Skip to content

Commit 5fea240

Browse files
authored
feat(no-ref): angular v20 (#147)
* feat(no-ref): angular v20
1 parent 360493a commit 5fea240

File tree

11 files changed

+31412
-1270
lines changed

11 files changed

+31412
-1270
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 19.0.0(2025-08-08)
2+
3+
### Feature
4+
5+
- update ng 20.x
6+
17
# 19.0.1(2025-04-29)
28

39
### Feature

angular.json

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,34 @@
77
"style": "scss",
88
"standalone": true,
99
"changeDetection": "OnPush",
10-
"viewEncapsulation": "Emulated"
10+
"viewEncapsulation": "Emulated",
11+
"type": "component"
1112
},
1213
"@schematics/angular:directive": {
13-
"standalone": true
14+
"standalone": true,
15+
"type": "directive"
1416
},
1517
"@schematics/angular:pipe": {
16-
"standalone": true
18+
"standalone": true,
19+
"typeSeparator": "."
1720
},
1821
"@schematics/angular:application": {
1922
"strict": true
23+
},
24+
"@schematics/angular:service": {
25+
"type": "service"
26+
},
27+
"@schematics/angular:guard": {
28+
"typeSeparator": "."
29+
},
30+
"@schematics/angular:interceptor": {
31+
"typeSeparator": "."
32+
},
33+
"@schematics/angular:module": {
34+
"typeSeparator": "."
35+
},
36+
"@schematics/angular:resolver": {
37+
"typeSeparator": "."
2038
}
2139
},
2240
"projects": {
@@ -85,17 +103,7 @@
85103
"test": {
86104
"builder": "@angular-devkit/build-angular:web-test-runner",
87105
"options": {
88-
"tsConfig": "tsconfig.spec.json",
89-
"inlineStyleLanguage": "scss",
90-
"assets": [
91-
"src/favicon.ico",
92-
"src/assets",
93-
"src/robots.txt",
94-
"src/sitemap.xml"
95-
],
96-
"polyfills": ["zone.js", "zone.js/testing"],
97-
"styles": ["src/styles.scss"],
98-
"scripts": []
106+
"tsConfig": "tsconfig.spec.json"
99107
}
100108
},
101109
"lint": {

bun.lock

Lines changed: 1233 additions & 1163 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)