[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',
'./Constants',
'./FrameworkInitializer',
'./BundleLoader',
'./ImplementationLoader',
'./ExtensionResolver',
'./BundleResolver',
'./CustomRegistrars',
'./ExtensionRegistrar',
'./ApplicationBootstrapper'
'./load/BundleLoader',
'./resolve/ImplementationLoader',
'./resolve/ExtensionResolver',
'./resolve/BundleResolver',
'./register/CustomRegistrars',
'./register/ExtensionRegistrar',
'./bootstrap/ApplicationBootstrapper'
],
function (require,
es6promise,

View File

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

View File

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

View File

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

View File

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