Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"prefix": "intl",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"builder": "@angular/build:ng-packagr",
"options": {
"project": "projects/angular-ecmascript-intl/ng-package.json"
},
Expand All @@ -25,7 +25,7 @@
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"builder": "@angular/build:karma",
"options": {
"tsConfig": "projects/angular-ecmascript-intl/tsconfig.spec.json",
"polyfills": ["zone.js", "zone.js/testing"],
Expand All @@ -46,7 +46,7 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"builder": "@angular/build:application",
"options": {
"outputPath": "dist/angular-intl-demo",
"index": "projects/angular-intl-demo/src/index.html",
Expand Down Expand Up @@ -98,7 +98,7 @@
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"builder": "@angular/build:dev-server",
"configurations": {
"production": {
"buildTarget": "angular-intl-demo:build:production"
Expand All @@ -110,7 +110,7 @@
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"builder": "@angular/build:extract-i18n",
"options": {
"buildTarget": "angular-intl-demo:build"
}
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
},
"private": true,
"dependencies": {
"@angular/animations": "20.0.0-rc.1",
"@angular/cdk": "20.0.0-rc.1",
"@angular/common": "20.0.0-rc.1",
"@angular/compiler": "20.0.0-rc.1",
Expand All @@ -33,7 +32,7 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "20.0.0-rc.2",
"@angular/build": "20.0.0-rc.2",
"@angular/cli": "20.0.0-rc.2",
"@angular/compiler-cli": "20.0.0-rc.1",
"@eslint/js": "^9.2.0",
Expand Down Expand Up @@ -62,5 +61,10 @@
"yarn": "Please use pnpm instead of yarn to install dependencies",
"pnpm": "^10.7.0"
},
"pnpm": {
"overrides": {
"jasmine-core": "$jasmine-core"
}
},
"packageManager": "[email protected]"
}
Loading