Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
angular-version: [8.0.x, 9.0.x, 10.0.x]
angular-version: [8.0.x, 8.1.x, 8.2.x, 8.3.x, 9.0.x, 9.1.x, 10.0.x, 10.1.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -61,7 +61,10 @@ At the moment this actions supports a limited set of Angular versions listed bel

- 8.0.x
- 8.1.x
- 8.2.x
- 8.3.x
Comment thread
NachoVazquez marked this conversation as resolved.
Outdated
- 9.0.x
- 9.1.x
- 10.0.x

## Contributing
Expand Down
87 changes: 87 additions & 0 deletions src/angular-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,64 @@ export const versions = new Map<string, PackageJsonVersion>([
}
}
],
[
'8.2.x',
{
dependencies: {
'@angular/animations': '~8.2.0',
'@angular/common': '~8.2.0',
'@angular/compiler': '~8.2.0',
'@angular/core': '~8.2.0',
'@angular/forms': '~8.2.0',
'@angular/platform-browser': '~8.2.0',
'@angular/platform-browser-dynamic': '~8.2.0',
'@angular/router': '~8.2.0',
rxjs: '~6.4.0',
tslib: '^1.10.0',
'zone.js': '~0.9.1'
},
devDependencies: {
'@angular-devkit/build-angular': '~0.802.0',
'@angular-devkit/build-ng-packagr': '~0.802.0',
'@angular/cli': '~8.2.0',
Comment thread
NachoVazquez marked this conversation as resolved.
Outdated
'@angular/compiler-cli': '~8.2.0',
'@types/node': '~8.9.4',
codelyzer: '^5.0.0',
'ts-node': '~7.0.0',
tslint: '~5.15.0',
typescript: '~3.5.3'
}
}
],
[
'8.3.x',
{
dependencies: {
'@angular/animations': '~8.3.0',
'@angular/common': '~8.3.0',
'@angular/compiler': '~8.3.0',
'@angular/core': '~8.3.0',
'@angular/forms': '~8.3.0',
'@angular/platform-browser': '~8.3.0',
'@angular/platform-browser-dynamic': '~8.3.0',
'@angular/router': '~8.3.0',
rxjs: '~6.4.0',
tslib: '^1.10.0',
'zone.js': '~0.9.1'
},
devDependencies: {
'@angular-devkit/build-angular': '~0.803.0',
'@angular-devkit/build-ng-packagr': '~0.803.0',
'@angular/cli': '~8.3.0',
'@angular/compiler-cli': '~8.2.3',
'@types/node': '~8.9.4',
codelyzer: '^5.0.0',
'ts-node': '~7.0.0',
tslint: '~5.15.0',
typescript: '~3.5.3'
}
}
],
Comment thread
NachoVazquez marked this conversation as resolved.
Outdated
[
'9.0.x',
{
Expand Down Expand Up @@ -88,6 +146,35 @@ export const versions = new Map<string, PackageJsonVersion>([
}
}
],
[
'9.1.x',
{
dependencies: {
'@angular/animations': '~9.1.0',
'@angular/common': '~9.1.0',
'@angular/compiler': '~9.1.0',
'@angular/core': '~9.1.0',
'@angular/forms': '~9.1.0',
'@angular/platform-browser': '~9.1.0',
'@angular/platform-browser-dynamic': '~9.1.0',
'@angular/router': '~9.1.0',
rxjs: '~6.5.4',
tslib: '^1.10.0',
'zone.js': '~0.10.2'
},
devDependencies: {
'@angular-devkit/build-angular': '~0.901.0',
'@angular-devkit/build-ng-packagr': '~0.901.0',
'@angular/cli': '~9.1.0',
'@angular/compiler-cli': '~9.1.0',
'@types/node': '^12.11.1',
codelyzer: '^5.1.2',
'ts-node': '~8.3.0',
tslint: '~6.1.0',
typescript: '~3.8.3'
}
}
],
[
'10.0.x',
{
Expand Down