-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(hybrid): rename npm package to @uirouter/angular-hybrid. Update …
…project to use latest @uirouter scoped packages BREAKING CHANGE: Project name switched from `ui-router-ng1-to-ng2` to `@uirouter/angular-hybrid` bundle moved to `_bundles/ui-router-angular-hybrid.js`
- Loading branch information
1 parent
abfbe9e
commit 6b06e86
Showing
6 changed files
with
329 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ | |
*.ipr | ||
*.iml | ||
*.iws | ||
.* | ||
stats.html | ||
|
||
# Logs | ||
logs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,56 @@ | ||
{ | ||
"name": "ui-router-ng1-to-ng2", | ||
"name": "@uirouter/angular-hybrid", | ||
"version": "2.0.0", | ||
"scripts": { | ||
"all": "npm run clean && npm run build && npm run bundle", | ||
"clean": "rm -rf ng1-to-ng2.d.ts ng1-to-ng2*.js ng1-to-ng2*.js.map build", | ||
"build": "npm run clean && npm run tsc", | ||
"bundle": "webpack", | ||
"tsc": "tsc", | ||
"tsc:w": "tsc -w", | ||
"prepublish": "npm run all" | ||
"clean": "shx rm -rf lib lib-esm _bundles", | ||
"build": "npm run clean && tsc && tsc -m es6 --outDir lib-esm", | ||
"package": "npm run build && rollup -c && rollup -c --environment MINIFY", | ||
"prepare": "npm run package" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@uirouter/angular": "git://github.com/ui-router/angular#1.0.0-beta.6+hybrid-2.0.0", | ||
"@uirouter/angularjs": "git://github.com/angular-ui/ui-router#1.0.3+hybrid-2.0.0", | ||
"@uirouter/core": "=5.0.3" | ||
}, | ||
"peerDependencies": { | ||
"@angular/core": "^2.0.1", | ||
"@angular/upgrade": "^2.0.1", | ||
"@angular/core": "^4.0.0", | ||
"@angular/upgrade": "^4.0.0", | ||
"angular": "^1.5.0", | ||
"rxjs": "^5.0.0", | ||
"zone.js": "~0.6.21" | ||
"zone.js": "^0.8.0" | ||
}, | ||
"devDependencies": { | ||
"@angular/common": "~2.0.1", | ||
"@angular/compiler": "~2.0.1", | ||
"@angular/core": "~2.0.1", | ||
"@angular/platform-browser": "~2.0.1", | ||
"@angular/platform-browser-dynamic": "~2.0.1", | ||
"@angular/upgrade": "~2.0.1", | ||
"@angular/common": "^4.0.0", | ||
"@angular/compiler": "^4.0.0", | ||
"@angular/core": "^4.0.0", | ||
"@angular/platform-browser": "^4.0.0", | ||
"@angular/platform-browser-dynamic": "^4.0.0", | ||
"@angular/upgrade": "^4.0.0", | ||
"@types/angular": "~1.6.1", | ||
"@types/jquery": "^1.10.31", | ||
"angular": "~1.6.1", | ||
"angular-ui-router": "angular-ui/ui-router#1.0.0-rc.1-artifacts", | ||
"awesome-typescript-loader": "^3.0.0", | ||
"readline-sync": "^1.4.7", | ||
"rollup": "^0.41.6", | ||
"rollup-plugin-commonjs": "^8.0.2", | ||
"rollup-plugin-node-resolve": "^3.0.0", | ||
"rollup-plugin-progress": "^0.2.1", | ||
"rollup-plugin-sourcemaps": "^0.4.2", | ||
"rollup-plugin-uglify": "^1.0.2", | ||
"rollup-plugin-visualizer": "^0.2.1", | ||
"rxjs": "^5.0.0", | ||
"shx": "^0.2.2", | ||
"systemjs": "0.19.25", | ||
"typescript": "^2.1.5", | ||
"ui-router-core": "=5.0.0-pre.1", | ||
"ui-router-ng2": "ui-router/ng2#1.0.0-beta.5-artifacts", | ||
"webpack": "^1.13.1", | ||
"zone.js": "~0.6.21" | ||
}, | ||
"main": "ng1-to-ng2.min.js", | ||
"typings": "ng1-to-ng2.d.ts", | ||
"main": "lib/index.js", | ||
"module": "lib-esm/index.js", | ||
"typings": "lib/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ui-router/ng1-to-ng2.git" | ||
"url": "https://github.com/ui-router/angular-hybrid.git" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './angular-hybrid'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
6b06e86
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When will the new
@uirouter/angular-hybrid
be available on npm?