Skip to content

Commit

Permalink
feat(core): Export all vanilla.* code from ui-router-core
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed Jan 22, 2017
1 parent 8719334 commit f3392d1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "ui-router-core",
"description": "UI-Router Core: Framework agnostic, State-based routing for JavaScript Single Page Apps",
"version": "3.1.1",
"version": "4.0.0",
"scripts": {
"clean": "shx rm -rf lib lib-esm",
"build": "npm run clean && tsc && tsc -m es6 --outDir lib-esm && npm run fixdts",
"fixdts": "dts-downlevel 'lib/**/*.d.ts' 'lib-esm/**/*.d.ts'",
"prepublish": "npm run build",
"test": "karma start",
"watch": "run-p watch:*",
"watch:buildjs": "tsc -w",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ export * from "./view/index";
export * from "./globals";

export * from "./router";
export * from "./vanilla";
export * from "./interface";
3 changes: 3 additions & 0 deletions src/vanilla/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
* @module vanilla
*/
/** */
export * from "./interface";

export * from "./$q";
export * from "./$injector";

Expand All @@ -17,4 +19,5 @@ export * from "./pushStateLocationService";
export * from "./memoryLocationConfig";
export * from "./browserLocationConfig";

export * from "./utils";
export * from "./plugins";

0 comments on commit f3392d1

Please sign in to comment.