[Framework] Refactor source folder

Refactor framework source folder; move each initialization
stage into its own directory. WTD-518.
This commit is contained in:
Victor Woeltjen 2014-11-05 12:18:19 -08:00
parent dbd5b148e2
commit 73e767228f
11 changed files with 11 additions and 11 deletions

View File

@ -19,13 +19,13 @@ define(
'../lib/angular-route.min', '../lib/angular-route.min',
'./Constants', './Constants',
'./FrameworkInitializer', './FrameworkInitializer',
'./BundleLoader', './load/BundleLoader',
'./ImplementationLoader', './resolve/ImplementationLoader',
'./ExtensionResolver', './resolve/ExtensionResolver',
'./BundleResolver', './resolve/BundleResolver',
'./CustomRegistrars', './register/CustomRegistrars',
'./ExtensionRegistrar', './register/ExtensionRegistrar',
'./ApplicationBootstrapper' './bootstrap/ApplicationBootstrapper'
], ],
function (require, function (require,
es6promise, es6promise,

View File

@ -1,7 +1,7 @@
/*global define*/ /*global define*/
define( define(
['./Constants', './Extension'], ['../Constants', './Extension'],
function (Constants, Extension) { function (Constants, Extension) {
"use strict"; "use strict";

View File

@ -4,7 +4,7 @@
* Module defining BundleLoader.js. Created by vwoeltje on 10/31/14. * Module defining BundleLoader.js. Created by vwoeltje on 10/31/14.
*/ */
define( define(
['./Constants', './Bundle'], ['../Constants', './Bundle'],
function (Constants, Bundle) { function (Constants, Bundle) {
"use strict"; "use strict";

View File

@ -4,7 +4,7 @@
* Module defining CustomRegistrars. Created by vwoeltje on 11/3/14. * Module defining CustomRegistrars. Created by vwoeltje on 11/3/14.
*/ */
define( define(
['./Constants'], ['../Constants'],
function (Constants) { function (Constants) {
"use strict"; "use strict";

View File

@ -4,7 +4,7 @@
* Module defining ExtensionRegistrar. Created by vwoeltje on 11/3/14. * Module defining ExtensionRegistrar. Created by vwoeltje on 11/3/14.
*/ */
define( define(
['./Constants', './PartialConstructor'], ['../Constants', './PartialConstructor'],
function (Constants, PartialConstructor) { function (Constants, PartialConstructor) {
"use strict"; "use strict";