Skip to content

Commit

Permalink
Updated dependencies and version
Browse files Browse the repository at this point in the history
  • Loading branch information
sconix committed Nov 26, 2023
1 parent b092600 commit 0894c3d
Show file tree
Hide file tree
Showing 4 changed files with 4,106 additions and 3,799 deletions.
39 changes: 20 additions & 19 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/app",
"index": "projects/app/src/index.html",
"main": "projects/app/src/main.ts",
"polyfills": "projects/app/src/polyfills.ts",
"browser": "projects/app/src/main.ts",
"polyfills": ["projects/app/src/polyfills.ts"],
"tsConfig": "projects/app/tsconfig.json",
"aot": true,
"assets": [
"projects/app/src/favicon.ico",
"projects/app/src/assets"
Expand All @@ -39,13 +38,6 @@
"with": "projects/app/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "none",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand All @@ -54,28 +46,38 @@
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
"maximumWarning": "30kb",
"maximumError": "50kb"
}
]
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "app:build"
"buildTarget": "app:build"
},
"configurations": {
"production": {
"browserTarget": "app:build:production"
"buildTarget": "app:build:production"
},
"development": {
"buildTarget": "app:build:development"
}
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "app:build"
"buildTarget": "app:build"
}
},
"lint": {
Expand All @@ -102,8 +104,7 @@
"project": "projects/lib/ng-package.json"
},
"configurations": {
"production": {
}
"production": {}
}
},
"lint": {
Expand Down

0 comments on commit 0894c3d

Please sign in to comment.