Skip to content

Commit 047d9fc

Browse files
authored
feat: add v12.1.x, v12.2.x support (#35)
1 parent 1cd2967 commit 047d9fc

File tree

4 files changed

+159
-3
lines changed

4 files changed

+159
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454
- 11.1.x,
5555
- 11.2.x
5656
- 12.0.x
57+
- 12.1.x
58+
- 12.2.x
5759

5860
steps:
5961
- uses: actions/checkout@v2
@@ -95,6 +97,8 @@ At the moment this actions supports a limited set of Angular versions listed bel
9597
- 11.1.x
9698
- 11.2.x
9799
- 12.0.x
100+
- 12.1.x
101+
- 12.2.x
98102

99103
### Managed packages
100104

dist/index.js

Lines changed: 77 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/angular-versions.ts

Lines changed: 77 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ export const versions = new Map<AngularVersion, PackageJson>([
632632
'zone.js': '~0.11.4'
633633
},
634634
devDependencies: {
635-
'@angular-builders/jest': '~12.0.0',
635+
'@angular-builders/jest': '~12.1.1',
636636
'@angular-devkit/build-angular': '~12.0.0',
637637
'@angular-devkit/build-ng-packagr': null,
638638
'@angular-devkit/schematics-cli': '~12.0.0',
@@ -647,5 +647,81 @@ export const versions = new Map<AngularVersion, PackageJson>([
647647
typescript: '~4.2.3'
648648
}
649649
}
650+
],
651+
[
652+
'12.1.x',
653+
{
654+
dependencies: {
655+
'@angular/animations': '~12.1.0',
656+
'@angular/cdk': '~12.1.0',
657+
'@angular/common': '~12.1.0',
658+
'@angular/compiler': '~12.1.0',
659+
'@angular/core': '~12.1.0',
660+
'@angular/elements': '~12.1.0',
661+
'@angular/forms': '~12.1.0',
662+
'@angular/google-maps': '~12.1.0',
663+
'@angular/material': '~12.1.0',
664+
'@angular/platform-browser': '~12.1.0',
665+
'@angular/platform-browser-dynamic': '~12.1.0',
666+
'@angular/router': '~12.1.0',
667+
'@angular/youtube-player': '~12.1.0',
668+
rxjs: '~6.6.0',
669+
tslib: '^2.2.0',
670+
'zone.js': '~0.11.4'
671+
},
672+
devDependencies: {
673+
'@angular-builders/jest': '~12.1.1',
674+
'@angular-devkit/build-angular': '~12.1.4',
675+
'@angular-devkit/build-ng-packagr': null,
676+
'@angular-devkit/schematics-cli': '~12.1.4',
677+
'@angular/cli': '~12.1.4',
678+
'@angular/compiler-cli': '~12.1.5',
679+
'@types/node': '^12.11.1',
680+
codelyzer: null,
681+
'ng-packagr': '^12.1.0',
682+
'ts-node': '~9.1.1',
683+
tsickle: null,
684+
tslint: null,
685+
typescript: '~4.3.2'
686+
}
687+
}
688+
],
689+
[
690+
'12.2.x',
691+
{
692+
dependencies: {
693+
'@angular/animations': '~12.2.0',
694+
'@angular/cdk': '~12.2.0',
695+
'@angular/common': '~12.2.0',
696+
'@angular/compiler': '~12.2.0',
697+
'@angular/core': '~12.2.0',
698+
'@angular/elements': '~12.2.0',
699+
'@angular/forms': '~12.2.0',
700+
'@angular/google-maps': '~12.2.0',
701+
'@angular/material': '~12.2.0',
702+
'@angular/platform-browser': '~12.2.0',
703+
'@angular/platform-browser-dynamic': '~12.2.0',
704+
'@angular/router': '~12.2.0',
705+
'@angular/youtube-player': '~12.2.0',
706+
rxjs: '~6.6.0',
707+
tslib: '^2.3.0',
708+
'zone.js': '~0.11.4'
709+
},
710+
devDependencies: {
711+
'@angular-builders/jest': '~12.1.1',
712+
'@angular-devkit/build-angular': '~12.2.2',
713+
'@angular-devkit/build-ng-packagr': null,
714+
'@angular-devkit/schematics-cli': '~12.2.2',
715+
'@angular/cli': '~12.2.2',
716+
'@angular/compiler-cli': '~12.2.0',
717+
'@types/node': '^12.11.1',
718+
codelyzer: null,
719+
'ng-packagr': '^12.2.0',
720+
'ts-node': '~9.1.1',
721+
tsickle: null,
722+
tslint: null,
723+
typescript: '~4.3.5'
724+
}
725+
}
650726
]
651727
]);

0 commit comments

Comments
 (0)