Skip to content

Commit

Permalink
Merge pull request #2 from chromiecraft/update-angular
Browse files Browse the repository at this point in the history
Update Angular
  • Loading branch information
FrancescoBorzi authored Sep 18, 2024
2 parents e0a822d + dc844ca commit fc6b683
Show file tree
Hide file tree
Showing 10 changed files with 12,336 additions and 9,205 deletions.
17 changes: 0 additions & 17 deletions .browserslistrc

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ chrome-profiler-events*.json
.history/*

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
26 changes: 15 additions & 11 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/dashboard",
"outputPath": {
"base": "dist/dashboard"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
Expand All @@ -33,7 +36,8 @@
"styles": [
"src/styles.scss"
],
"scripts": []
"scripts": [],
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -58,9 +62,7 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand All @@ -72,18 +74,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "dashboard:build:production"
"buildTarget": "dashboard:build:production"
},
"development": {
"browserTarget": "dashboard:build:development"
"buildTarget": "dashboard:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "dashboard:build"
"buildTarget": "dashboard:build"
}
},
"test": {
Expand All @@ -107,5 +109,7 @@
}
}
},
"defaultProject": "dashboard"
"cli": {
"analytics": false
}
}
Loading

0 comments on commit fc6b683

Please sign in to comment.