Skip to content

Commit 95b7c8a

Browse files
chore(deps): update devdependencies (#391)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: fisker <lionkay@gmail.com>
1 parent 097f963 commit 95b7c8a

7 files changed

Lines changed: 440 additions & 400 deletions

File tree

package.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,27 +27,28 @@
2727
"release": "release-it"
2828
},
2929
"devDependencies": {
30-
"@angular/compiler": "21.2.8",
31-
"@babel/code-frame": "8.0.0-rc.3",
32-
"@babel/parser": "8.0.0-rc.3",
33-
"@babel/types": "8.0.0-rc.3",
30+
"@angular/compiler": "21.2.13",
31+
"@babel/code-frame": "8.0.0-rc.5",
32+
"@babel/parser": "8.0.0-rc.5",
33+
"@babel/types": "8.0.0-rc.5",
3434
"@eslint/js": "10.0.1",
35-
"@types/node": "25.6.0",
36-
"@vitest/coverage-v8": "4.1.4",
35+
"@types/node": "25.9.0",
36+
"@vitest/coverage-v8": "4.1.6",
3737
"eslint": "10.4.0",
3838
"eslint-config-prettier": "10.1.8",
3939
"eslint-plugin-simple-import-sort": "13.0.0",
4040
"eslint-plugin-unicorn": "64.0.0",
41-
"globals": "17.4.0",
41+
"globals": "17.6.0",
4242
"jest-snapshot-serializer-raw": "2.0.0",
4343
"lines-and-columns": "2.0.4",
4444
"npm-run-all2": "9.0.0",
45-
"prettier": "3.8.2",
45+
"prettier": "3.8.3",
4646
"release-it": "20.0.1",
47-
"tsdown": "0.21.7",
47+
"tsdown": "0.22.0",
4848
"typescript": "6.0.3",
49-
"typescript-eslint": "8.58.1",
50-
"vitest": "4.1.4"
49+
"typescript-eslint": "8.59.4",
50+
"unrun": "0.3.0",
51+
"vitest": "4.1.6"
5152
},
5253
"peerDependencies": {
5354
"@angular/compiler": ">=21.0.7 || >= 21.2.0-0"

tests/__snapshots__/transform.test.ts.snap

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ NGEmptyExpression {
913913
> 2 |
914914
| ^
915915
> 3 | // comment
916-
| ^^^^^^^^^^^^
916+
| ^^^^^^^^^^^
917917
--------------------------------------------------------------------------------
918918
CommentLine {
919919
"value": " comment"
@@ -935,7 +935,7 @@ NGEmptyExpression {
935935
> 2 |
936936
| ^
937937
> 3 | // comment
938-
| ^^^^^^^^^^^^
938+
| ^^^^^^^^^^^
939939
--------------------------------------------------------------------------------
940940
CommentLine {
941941
"value": " comment"
@@ -965,7 +965,7 @@ NGEmptyExpression {
965965
> 2 |
966966
| ^
967967
> 3 | // comment
968-
| ^^^^^^^^^^^^
968+
| ^^^^^^^^^^^
969969
--------------------------------------------------------------------------------
970970
CommentLine {
971971
"value": " comment"
@@ -987,7 +987,7 @@ NGEmptyExpression {
987987
> 2 |
988988
| ^
989989
> 3 | // comment
990-
| ^^^^^^^^^^^^
990+
| ^^^^^^^^^^^
991991
--------------------------------------------------------------------------------
992992
CommentLine {
993993
"value": " comment"
@@ -1017,7 +1017,7 @@ NGEmptyExpression {
10171017
> 2 |
10181018
| ^
10191019
> 3 | // comment
1020-
| ^^^^^^^^^^^^
1020+
| ^^^^^^^^^^^
10211021
--------------------------------------------------------------------------------
10221022
CommentLine {
10231023
"value": " comment"
@@ -1039,7 +1039,7 @@ NGEmptyExpression {
10391039
> 2 |
10401040
| ^
10411041
> 3 | // comment
1042-
| ^^^^^^^^^^^^
1042+
| ^^^^^^^^^^^
10431043
--------------------------------------------------------------------------------
10441044
CommentLine {
10451045
"value": " comment"
@@ -1069,7 +1069,7 @@ NGEmptyExpression {
10691069
> 2 |
10701070
| ^
10711071
> 3 | // comment
1072-
| ^^^^^^^^^^^^
1072+
| ^^^^^^^^^^^
10731073
--------------------------------------------------------------------------------
10741074
CommentLine {
10751075
"value": " comment"
@@ -1091,7 +1091,7 @@ NGEmptyExpression {
10911091
> 2 |
10921092
| ^
10931093
> 3 | // comment
1094-
| ^^^^^^^^^^^^
1094+
| ^^^^^^^^^^^
10951095
--------------------------------------------------------------------------------
10961096
CommentLine {
10971097
"value": " comment"

tests/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export function snapshotAst(ast: any, source: string) {
9494
}, {});
9595
const fixColumn = (p: { line: number; column: number }) => ({
9696
line: p.line + 1,
97-
column: p.column + 1,
97+
column: p.column,
9898
});
9999
const [start, end] = [node.start, node.end].map((index) =>
100100
fixColumn(linesAndColumns.locationForIndex(index)!),

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"module": "NodeNext",
88
"esModuleInterop": true,
99
"skipLibCheck": true,
10-
"types": ["vitest/globals"],
10+
"types": ["node", "vitest/globals"],
1111
"noEmit": true,
1212
"allowImportingTsExtensions": true
1313
},
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)