Skip to content

Commit 164ab2c

Browse files
feat: v3 and Angular 20 update (#127)
BREAKING CHANGE: bumps dependency on @schedule-x/calendar to 3.0.0
1 parent 594ad34 commit 164ab2c

File tree

9 files changed

+12355
-17057
lines changed

9 files changed

+12355
-17057
lines changed

angular.json

Lines changed: 36 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"prefix": "lib",
1111
"architect": {
1212
"build": {
13-
"builder": "@angular-devkit/build-angular:ng-packagr",
13+
"builder": "@angular/build:ng-packagr",
1414
"options": {
1515
"project": "projects/schedule-x/angular/ng-package.json"
1616
},
@@ -25,7 +25,7 @@
2525
"defaultConfiguration": "production"
2626
},
2727
"test": {
28-
"builder": "@angular-devkit/build-angular:karma",
28+
"builder": "@angular/build:karma",
2929
"options": {
3030
"tsConfig": "projects/schedule-x/angular/tsconfig.spec.json",
3131
"polyfills": [
@@ -44,7 +44,7 @@
4444
"prefix": "app",
4545
"architect": {
4646
"build": {
47-
"builder": "@angular-devkit/build-angular:application",
47+
"builder": "@angular/build:application",
4848
"options": {
4949
"outputPath": "dist/development",
5050
"index": "projects/development/src/index.html",
@@ -64,7 +64,7 @@
6464
],
6565
"scripts": [],
6666
"server": "projects/development/src/main.server.ts",
67-
"prerender": true,
67+
"prerender": false,
6868
"ssr": {
6969
"entry": "projects/development/server.ts"
7070
}
@@ -94,7 +94,7 @@
9494
"defaultConfiguration": "production"
9595
},
9696
"serve": {
97-
"builder": "@angular-devkit/build-angular:dev-server",
97+
"builder": "@angular/build:dev-server",
9898
"configurations": {
9999
"production": {
100100
"buildTarget": "development:build:production"
@@ -106,10 +106,10 @@
106106
"defaultConfiguration": "development"
107107
},
108108
"extract-i18n": {
109-
"builder": "@angular-devkit/build-angular:extract-i18n"
109+
"builder": "@angular/build:extract-i18n"
110110
},
111111
"test": {
112-
"builder": "@angular-devkit/build-angular:karma",
112+
"builder": "@angular/build:karma",
113113
"options": {
114114
"polyfills": [
115115
"zone.js",
@@ -130,5 +130,34 @@
130130
}
131131
}
132132
}
133+
},
134+
"schematics": {
135+
"@schematics/angular:component": {
136+
"type": "component"
137+
},
138+
"@schematics/angular:directive": {
139+
"type": "directive"
140+
},
141+
"@schematics/angular:service": {
142+
"type": "service"
143+
},
144+
"@schematics/angular:guard": {
145+
"typeSeparator": "."
146+
},
147+
"@schematics/angular:interceptor": {
148+
"typeSeparator": "."
149+
},
150+
"@schematics/angular:module": {
151+
"typeSeparator": "."
152+
},
153+
"@schematics/angular:pipe": {
154+
"typeSeparator": "."
155+
},
156+
"@schematics/angular:resolver": {
157+
"typeSeparator": "."
158+
}
159+
},
160+
"cli": {
161+
"analytics": false
133162
}
134163
}

0 commit comments

Comments
 (0)