Skip to content

Commit 7c6e53a

Browse files
authored
Require @angular/compiler v21 (#345)
1 parent 49623d9 commit 7c6e53a

File tree

7 files changed

+2190
-2307
lines changed

7 files changed

+2190
-2307
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ jobs:
3636
name: Node.js ${{ matrix.node }}
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v4
40-
- uses: actions/setup-node@v4
39+
- uses: actions/checkout@v6
40+
- uses: actions/setup-node@v6
4141
with:
4242
node-version: ${{ matrix.node }}
4343
cache: 'yarn'

.yarn/releases/yarn-4.11.0.cjs

Lines changed: 942 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-4.7.0.cjs

Lines changed: 0 additions & 935 deletions
This file was deleted.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ enableGlobalCache: true
66

77
nodeLinker: node-modules
88

9-
yarnPath: .yarn/releases/yarn-4.7.0.cjs
9+
yarnPath: .yarn/releases/yarn-4.11.0.cjs

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,29 +26,29 @@
2626
"release": "release-it"
2727
},
2828
"devDependencies": {
29-
"@angular/compiler": "20.3.4",
30-
"@babel/code-frame": "8.0.0-beta.2",
31-
"@babel/parser": "8.0.0-beta.2",
32-
"@babel/types": "8.0.0-beta.2",
33-
"@types/node": "24.7.1",
34-
"@vitest/coverage-v8": "3.2.4",
35-
"eslint": "9.37.0",
29+
"@angular/compiler": "21.0.0",
30+
"@babel/code-frame": "8.0.0-beta.3",
31+
"@babel/parser": "8.0.0-beta.3",
32+
"@babel/types": "8.0.0-beta.3",
33+
"@types/node": "24.10.1",
34+
"@vitest/coverage-v8": "4.0.12",
35+
"eslint": "9.39.1",
3636
"eslint-config-prettier": "10.1.8",
3737
"eslint-plugin-simple-import-sort": "12.1.1",
38-
"eslint-plugin-unicorn": "61.0.2",
39-
"globals": "16.4.0",
38+
"eslint-plugin-unicorn": "62.0.0",
39+
"globals": "16.5.0",
4040
"jest-snapshot-serializer-raw": "2.0.0",
4141
"lines-and-columns": "2.0.4",
4242
"npm-run-all2": "8.0.4",
4343
"prettier": "3.6.2",
44-
"release-it": "19.0.5",
45-
"tsdown": "0.15.6",
44+
"release-it": "19.0.6",
45+
"tsdown": "0.16.6",
4646
"typescript": "5.9.3",
47-
"typescript-eslint": "8.46.0",
48-
"vitest": "3.2.4"
47+
"typescript-eslint": "8.47.0",
48+
"vitest": "4.0.12"
4949
},
5050
"peerDependencies": {
51-
"@angular/compiler": "^20.3.4"
51+
"@angular/compiler": "^21.0.0"
5252
},
5353
"engines": {
5454
"node": ">= 20"
@@ -62,5 +62,5 @@
6262
"access": "public",
6363
"registry": "https://registry.npmjs.org/"
6464
},
65-
"packageManager": "yarn@4.7.0"
65+
"packageManager": "yarn@4.11.0"
6666
}

vitest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ export default defineConfig({
1313
thresholds: {
1414
branches: 95,
1515
functions: 100,
16-
lines: 100,
17-
statements: 100,
16+
lines: 95,
17+
statements: 95,
1818
},
1919
},
2020
},

0 commit comments

Comments
 (0)