Skip to content

Commit

Permalink
Merge pull request #62 from ofcyln/angular-version-12-upgrade
Browse files Browse the repository at this point in the history
Angular version 12 upgrade
  • Loading branch information
ofcyln authored Jun 21, 2022
2 parents f32239b + 4f5938e commit a2adc5e
Show file tree
Hide file tree
Showing 8 changed files with 8,042 additions and 9,361 deletions.
3 changes: 2 additions & 1 deletion .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"extends",
"ignores",
"include",
"for"
"for",
"use"
]
}
],
Expand Down
31 changes: 22 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"src/favicon.ico",
"src/assets",
Expand All @@ -43,7 +42,13 @@
"src/styles.scss",
"src/assets/scss/theme.scss"
],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand Down Expand Up @@ -74,19 +79,24 @@
],
"serviceWorker": true,
"ngswConfigPath": "ngsw-config.json"
}
}
},
"development": {}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "mortgage-expense-calculator:build"
},
"configurations": {
"production": {
"browserTarget": "mortgage-expense-calculator:build:production"
},
"development": {
"browserTarget": "mortgage-expense-calculator:build:development"
}
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
Expand Down Expand Up @@ -130,14 +140,17 @@
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "mortgage-expense-calculator:serve"
"protractorConfig": "e2e/protractor.conf.js"
},
"configurations": {
"production": {
"devServerTarget": "mortgage-expense-calculator:serve:production"
},
"development": {
"devServerTarget": "mortgage-expense-calculator:serve:development"
}
}
},
"defaultConfiguration": "development"
}
}
}
Expand Down
Loading

0 comments on commit a2adc5e

Please sign in to comment.