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
3 changes: 2 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, 8.1.x, 8.2.x, 9.0.x, 9.1.x, 10.0.x, 10.1.x, 10.2.x]
angular-version: [8.0.x, 8.1.x, 8.2.x, 9.0.x, 9.1.x, 10.0.x, 10.1.x, 10.2.x, 11.0.x]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -67,6 +67,7 @@ At the moment this actions supports a limited set of Angular versions listed bel
- 10.0.x
- 10.1.x
- 10.2.x
- 11.0.x

## Contributing

Expand Down
29 changes: 29 additions & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"build": "tsc && yarn package",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
Expand Down
29 changes: 29 additions & 0 deletions src/angular-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,5 +232,34 @@ export const versions = new Map<string, PackageJsonVersion>([
typescript: '~4.0.2'
}
}
],
[
'11.0.x',
{
dependencies: {
'@angular/animations': '~11.0.0-rc.1',
Comment thread
LayZeeDK marked this conversation as resolved.
Outdated
'@angular/common': '~11.0.0-rc.1',
'@angular/compiler': '~11.0.0-rc.1',
'@angular/core': '~11.0.0-rc.1',
'@angular/forms': '~11.0.0-rc.1',
'@angular/platform-browser': '~11.0.0-rc.1',
'@angular/platform-browser-dynamic': '~11.0.0-rc.1',
'@angular/router': '~11.0.0-rc.1',
rxjs: '~6.6.0',
tslib: '^2.0.0',
'zone.js': '~0.10.2'
},
devDependencies: {
'@angular-devkit/build-angular': '~0.1100.0-rc.1',
'@angular-devkit/build-ng-packagr': '~0.1100.0-rc.1',
'@angular/cli': '~11.0.0-rc.1',
'@angular/compiler-cli': '~11.0.0-rc.1',
'@types/node': '^12.11.1',
codelyzer: '^6.0.0',
'ts-node': '~8.3.0',
tslint: '~6.1.0',
typescript: '~4.0.2'
}
}
]
]);