-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(travis): Do not install custom yarn version (travis seems to be installing recent versions these days) * feat(package): Switch to ng-packagr for packaging @uirouter/angular * chore(package): update package.json scripts for ng-packagr style * chore(package): update to @uirouter/[email protected] * feat(package): switch to peerDependencies for uirouter/core and /rx and require angular 8 peer dependencies BREAKING CHANGE: uirouter core and rx packages are now `peerDependencies`. You will need to explicitly install the correct versions of `@uirouter/core` and `@uirouter/rx` into your project. before: ``` dependencies: { "@uirouter/angular": "4.0.0" } ``` after (example -- versions will vary): ``` dependencies: { "@uirouter/angular": "5.0.0" "@uirouter/core": "6.0.1", "@uirouter/rx": "0.6.0", } ``` Or, use this command to automatically install peerDependencies: ``` npx check-peer-dependencies --install ``` * chore(package): Build with Angular 8 * fix(angular8): Add static: true to ViewChild * fix(lazyLoad): Remove dependency on angular/router in favor of using ivy Ivy supports lazy loading of modules without depending on the ROUTES token from angular/router. * feat(package): Drop support for Angular version 7 and lower BREAKING CHANGE: UIRouter for Angular v6.0.0 now requires Angular 8 or higher * test(angular-versions): Test against Angular 9 * test(typescript-versions): Test against Typescript 3.4 through 3.7 * test(angular-versions): Angular 9: npx ng update @angular/core @angular/cli --next * test(angular-versions): Angular 8: remove package-lock.json
- Loading branch information
1 parent
2f1506c
commit 00e9d6a
Showing
96 changed files
with
7,062 additions
and
2,901 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 |
---|---|---|
|
@@ -14,3 +14,4 @@ _doc | |
_bundles | ||
lib | ||
lib-esm | ||
dist |
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 |
---|---|---|
@@ -1,15 +1,12 @@ | ||
{ | ||
"angular6": "./test-angular-versions/v6", | ||
"angular7": "./test-angular-versions/v7", | ||
"angular8": "./test-angular-versions/v8", | ||
"typescript2.3": "./test-typescript-versions/typescript2.3", | ||
"typescript2.4": "./test-typescript-versions/typescript2.4", | ||
"typescript2.5": "./test-typescript-versions/typescript2.5", | ||
"typescript2.6": "./test-typescript-versions/typescript2.6", | ||
"typescript2.7": "./test-typescript-versions/typescript2.7", | ||
"typescript2.8": "./test-typescript-versions/typescript2.8", | ||
"typescript2.9": "./test-typescript-versions/typescript2.9", | ||
"typescript3.1": "./test-typescript-versions/typescript3.1", | ||
"typescript3.2": "./test-typescript-versions/typescript3.2", | ||
"sample-app-angular": "https://github.com/ui-router/sample-app-angular.git" | ||
"packageDir": "./dist", | ||
"projects": { | ||
"angular8": "./test-angular-versions/v8", | ||
"angular9": "./test-angular-versions/v9", | ||
"typescript3.4": "./test-typescript-versions/typescript3.4", | ||
"typescript3.5": "./test-typescript-versions/typescript3.5", | ||
"typescript3.6": "./test-typescript-versions/typescript3.6", | ||
"typescript3.7": "./test-typescript-versions/typescript3.7", | ||
"sample-app-angular": "https://github.com/ui-router/sample-app-angular.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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.