Skip to content

Commit

Permalink
feat: upgrade to ng 18
Browse files Browse the repository at this point in the history
- update @angular-eslint/schematics@latest angularx-qrcode@latest
- ng update
- fix pwa build issue
- fix unit tests
  • Loading branch information
davidshen84 committed Jun 23, 2024
1 parent f78fe5a commit 4bd26d1
Show file tree
Hide file tree
Showing 19 changed files with 5,895 additions and 3,807 deletions.
19 changes: 11 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/blog",
"outputPath": {
"base": "dist/blog"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": [
"zone.js"
],
Expand All @@ -42,12 +43,16 @@
"moment",
"remarkable-katex"
],
"vendorChunk": false,
"extractLicenses": false,
"buildOptimizer": true,
"optimization": true,
"namedChunks": true,
"serviceWorker": true
"serviceWorker": "ngsw-config.json",
"browser": "src/main.ts",
"stylePreprocessorOptions": {
"includePaths": [
"."
]
}
},
"defaultConfiguration": "production",
"configurations": {
Expand All @@ -61,9 +66,7 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true
}
Expand Down
Loading

0 comments on commit 4bd26d1

Please sign in to comment.