Skip to content

Commit

Permalink
feat(peer-deps): support @angular/compiler@9 (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Feb 10, 2020
1 parent 0db36dc commit 5ade21e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ script:
- yarn run lint
- yarn run test

- yarn upgrade @angular/compiler@8.2.0
- node -e "assert.equal(require('@angular/compiler').VERSION.full, '8.2.0')"
- yarn run test

- yarn upgrade @angular/compiler@8.0.0
- node -e "assert.equal(require('@angular/compiler').VERSION.full, '8.0.0')"
- yarn run test
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"tslib": "^1.9.3"
},
"devDependencies": {
"@angular/compiler": "8.2.0",
"@angular/compiler": "9.0.0",
"@babel/code-frame": "7.8.3",
"@babel/parser": "7.6.4",
"@babel/types": "7.1.5",
Expand All @@ -46,7 +46,7 @@
"typescript": "3.7.5"
},
"peerDependencies": {
"@angular/compiler": "^6.0.0 || ^7.0.0 || ^8.0.0"
"@angular/compiler": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"engines": {
"node": ">= 6"
Expand Down
12 changes: 5 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
# yarn lockfile v1


"@angular/compiler@8.2.0":
version "8.2.0"
resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-8.2.0.tgz#216cbebb9e9a59c2037746112dbf044a26670e36"
integrity sha512-5OlLfL6cie8XAY+pPc+iCouzO07V5Lahmyr6OVKMjePJO5SkPuVdm/OPdR43n3VNlOje4bwHHvoTok1BKepDTg==
dependencies:
tslib "^1.9.0"
"@angular/compiler@9.0.0":
version "9.0.0"
resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-9.0.0.tgz#87e0bef4c369b6cadae07e3a4295778fc93799d5"
integrity sha512-ctjwuntPfZZT2mNj2NDIVu51t9cvbhl/16epc5xEwyzyDt76pX9UgwvY+MbXrf/C/FWwdtmNtfP698BKI+9leQ==

"@babel/code-frame@7.8.3", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35":
version "7.8.3"
Expand Down Expand Up @@ -4290,7 +4288,7 @@ ts-jest@23.10.5:
semver "^5.5"
yargs-parser "10.x"

tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.3:
version "1.10.0"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
Expand Down

0 comments on commit 5ade21e

Please sign in to comment.