Skip to content

Commit 7026b3b

Browse files
committed
feat: bump the Angular version to 12, closes #433
BREAKING CHANGES: bump the Angular version to 12
1 parent 03b7b32 commit 7026b3b

38 files changed

+26453
-22000
lines changed

.eslintrc.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
"enforceBuildableLibDependency": true,
1313
"allow": [],
1414
"depConstraints": [
15-
{ "sourceTag": "*", "onlyDependOnLibsWithTags": ["*"] }
15+
{
16+
"sourceTag": "*",
17+
"onlyDependOnLibsWithTags": ["*"]
18+
}
1619
]
1720
}
1821
]
@@ -21,7 +24,6 @@
2124
{
2225
"files": ["*.ts", "*.tsx"],
2326
"extends": ["plugin:@nrwl/nx/typescript"],
24-
"parserOptions": { "project": "./tsconfig.*?.json" },
2527
"rules": {}
2628
},
2729
{

.github/workflows/pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/[email protected]
15-
- name: Use Node.js 12.x
15+
- name: Use Node.js 14.x
1616
uses: actions/[email protected]
1717
with:
18-
node-version: 12.x
18+
node-version: 14.x
1919
- name: Install
2020
run: |
2121
npm ci

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/[email protected]
15-
- name: Use Node.js 12.x
15+
- name: Use Node.js 14.x
1616
uses: actions/[email protected]
1717
with:
18-
node-version: 12.x
18+
node-version: 14.x
1919
- name: npm install
2020
run: |
2121
npm ci

CONTRIBUTING.md

-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,3 @@ npm run lint
3030
2. Update [README.md](./README.md) to reflect changes related to public API and everything relevant
3131
3. Make sure you cover all code changes with unit tests
3232
4. When you are ready, create Pull Request of your fork into the original repository
33-

0 commit comments

Comments
 (0)