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
4 changes: 4 additions & 0 deletions docs/internal/angular-update-procedure.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ This document describes how to update Angular in spa-angular-client module
```$bash
./gradlew npm_run_ng_update
```

```$bash
./gradlew npm_run_ngUpdate
```
13 changes: 9 additions & 4 deletions samples/lib/spa-angular-client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"aot": true,
"baseHref": "/angular/",
"deployUrl": "/static/angular/",
"outputPath": "build/resources/main/static/angular",
Expand All @@ -28,7 +27,13 @@
"styles": [
"src/styles.css"
],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -49,12 +54,12 @@
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down
Loading