Skip to content

Commit 1aecec5

Browse files
refactor(*): move ng2 sources from ng2/ to /
1 parent fc311a0 commit 1aecec5

23 files changed

+34
-41
lines changed

config/system.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ System.config({
1010
'rxjs': 'node_modules/rxjs/bundles/Rx.js',
1111
'@angular': 'node_modules/@angular',
1212

13-
'ui-router-ng2': 'src/ng2.ts'
13+
'ui-router-ng2': 'src/index.ts'
1414
},
1515
map: {
1616
'ui-router-core': 'node_modules/ui-router-core/lib',
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/index.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/** @ng2api @module ng2 */ /** for typedoc */
2+
export * from "ui-router-core";
3+
4+
import 'rxjs/add/observable/of';
5+
import 'rxjs/add/observable/combineLatest';
6+
import 'rxjs/add/observable/fromPromise';
7+
import 'rxjs/add/operator/switchMap';
8+
import 'rxjs/add/operator/mergeMap';
9+
import 'rxjs/add/operator/concat';
10+
import 'rxjs/add/operator/map';
11+
12+
export * from "./interface";
13+
export * from "./lazyLoadNgModule";
14+
export * from "./rx";
15+
export * from "./providers";
16+
export * from "./location/uiRouterLocation";
17+
export * from "./directives/directives";
18+
export * from "./statebuilders/views";
19+
export * from "./uiRouterNgModule";
20+
export * from "./uiRouterConfig";
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)