Skip to content

Commit 67a8f3b

Browse files
authored
Merge pull request #24 from ngxpert/feat/ng-update-20
update angular to 20 BREAKING CHANGE: update angular to 20
2 parents ae397f0 + faf51fb commit 67a8f3b

File tree

5 files changed

+3394
-2973
lines changed

5 files changed

+3394
-2973
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@
1515
Install in your project using `npm`:
1616

1717
```bash
18-
# Angular 19+
18+
# Angular 20+
1919
npm install @ngxpert/coolshapes
2020

21+
# Angular 19+
22+
npm install @ngxpert/coolshapes@3
23+
2124
# Angular 18+
2225
npm install @ngxpert/coolshapes@2
2326

@@ -28,9 +31,12 @@ npm install @ngxpert/coolshapes@1
2831
or `yarn`
2932

3033
```bash
31-
# Angular 19+
34+
# Angular 20+
3235
yarn add @ngxpert/coolshapes
3336

37+
# Angular 19+
38+
yarn add @ngxpert/coolshapes@3
39+
3440
# Angular 18+
3541
yarn add @ngxpert/coolshapes@2
3642

angular.json

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@
110110
"defaultConfiguration": "development"
111111
},
112112
"extract-i18n": {
113-
"builder": "@angular-devkit/build-angular:extract-i18n"
113+
"builder": "@angular/build:extract-i18n"
114114
},
115115
"test": {
116-
"builder": "@angular-devkit/build-angular:karma",
116+
"builder": "@angular/build:karma",
117117
"options": {
118118
"polyfills": [
119119
"zone.js",
@@ -142,7 +142,7 @@
142142
"prefix": "lib",
143143
"architect": {
144144
"build": {
145-
"builder": "@angular-devkit/build-angular:ng-packagr",
145+
"builder": "@angular/build:ng-packagr",
146146
"options": {
147147
"project": "projects/ngxpert/coolshapes/ng-package.json"
148148
},
@@ -157,7 +157,7 @@
157157
"defaultConfiguration": "production"
158158
},
159159
"test": {
160-
"builder": "@angular-devkit/build-angular:karma",
160+
"builder": "@angular/build:karma",
161161
"options": {
162162
"tsConfig": "projects/ngxpert/coolshapes/tsconfig.spec.json",
163163
"polyfills": [
@@ -171,5 +171,31 @@
171171
},
172172
"cli": {
173173
"analytics": false
174+
},
175+
"schematics": {
176+
"@schematics/angular:component": {
177+
"type": "component"
178+
},
179+
"@schematics/angular:directive": {
180+
"type": "directive"
181+
},
182+
"@schematics/angular:service": {
183+
"type": "service"
184+
},
185+
"@schematics/angular:guard": {
186+
"typeSeparator": "."
187+
},
188+
"@schematics/angular:interceptor": {
189+
"typeSeparator": "."
190+
},
191+
"@schematics/angular:module": {
192+
"typeSeparator": "."
193+
},
194+
"@schematics/angular:pipe": {
195+
"typeSeparator": "."
196+
},
197+
"@schematics/angular:resolver": {
198+
"typeSeparator": "."
199+
}
174200
}
175201
}

0 commit comments

Comments
 (0)