Skip to content

Commit 34743c4

Browse files
authored
Angular 20 upgrade (#215)
* update angular * update material * update version to 20.x * update storybook * angular/cli ... * types jest * Revert "types jest" This reverts commit 3b9bc80. * typescript * prettier * eslint * eslint * update angular-jest * npm audit fix * update other versions
1 parent 2e59190 commit 34743c4

File tree

14 files changed

+5271
-4290
lines changed

14 files changed

+5271
-4290
lines changed

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v5
1010
# Setup .npmrc file to publish to npm
11-
- uses: actions/setup-node@v4
11+
- uses: actions/setup-node@v5
1212
with:
1313
node-version: '22.x'
1414
registry-url: 'https://registry.npmjs.org'

angular.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,31 @@
6060
}
6161
}
6262
}
63+
},
64+
"schematics": {
65+
"@schematics/angular:component": {
66+
"type": "component"
67+
},
68+
"@schematics/angular:directive": {
69+
"type": "directive"
70+
},
71+
"@schematics/angular:service": {
72+
"type": "service"
73+
},
74+
"@schematics/angular:guard": {
75+
"typeSeparator": "."
76+
},
77+
"@schematics/angular:interceptor": {
78+
"typeSeparator": "."
79+
},
80+
"@schematics/angular:module": {
81+
"typeSeparator": "."
82+
},
83+
"@schematics/angular:pipe": {
84+
"typeSeparator": "."
85+
},
86+
"@schematics/angular:resolver": {
87+
"typeSeparator": "."
88+
}
6389
}
6490
}

0 commit comments

Comments
 (0)