File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ui-router-core" ,
3
3
"description" : " UI-Router Core: Framework agnostic, State-based routing for JavaScript Single Page Apps" ,
4
- "version" : " 3.1.1 " ,
4
+ "version" : " 4.0.0 " ,
5
5
"scripts" : {
6
6
"clean" : " shx rm -rf lib lib-esm" ,
7
7
"build" : " npm run clean && tsc && tsc -m es6 --outDir lib-esm && npm run fixdts" ,
8
8
"fixdts" : " dts-downlevel 'lib/**/*.d.ts' 'lib-esm/**/*.d.ts'" ,
9
+ "prepublish" : " npm run build" ,
9
10
"test" : " karma start" ,
10
11
"watch" : " run-p watch:*" ,
11
12
"watch:buildjs" : " tsc -w" ,
Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ export * from "./view/index";
14
14
export * from "./globals" ;
15
15
16
16
export * from "./router" ;
17
+ export * from "./vanilla" ;
17
18
export * from "./interface" ;
Original file line number Diff line number Diff line change 6
6
* @module vanilla
7
7
*/
8
8
/** */
9
+ export * from "./interface" ;
10
+
9
11
export * from "./$q" ;
10
12
export * from "./$injector" ;
11
13
@@ -17,4 +19,5 @@ export * from "./pushStateLocationService";
17
19
export * from "./memoryLocationConfig" ;
18
20
export * from "./browserLocationConfig" ;
19
21
22
+ export * from "./utils" ;
20
23
export * from "./plugins" ;
You can’t perform that action at this time.
0 commit comments