2015-05-03 23:04:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
define([
|
2015-10-03 14:14:41 +00:00
|
|
|
'app/components/projects/index', 'app/components/builds/index',
|
|
|
|
'app/components/app/index', 'app/components/header/index',
|
|
|
|
'app/components/dashboard/index', 'app/components/buildLog/index'
|
|
|
|
], function(
|
|
|
|
ProjectsComponents, BuildsComponents,
|
|
|
|
App, Header,
|
|
|
|
Dashboard, BuildLogComponent
|
|
|
|
) {
|
2015-05-03 23:04:51 +00:00
|
|
|
return {
|
|
|
|
App: App,
|
2015-05-17 13:48:16 +00:00
|
|
|
Header: Header,
|
|
|
|
Project: ProjectsComponents,
|
2015-07-11 12:24:35 +00:00
|
|
|
Build: BuildsComponents,
|
2015-10-03 14:14:41 +00:00
|
|
|
Dashboard: Dashboard,
|
|
|
|
BuildLog: BuildLogComponent
|
2015-05-03 23:04:51 +00:00
|
|
|
};
|
|
|
|
});
|