Skip to content

Commit

Permalink
Merge pull request #268 from lardbit/angular-17
Browse files Browse the repository at this point in the history
Angular 17
  • Loading branch information
lardbit authored Jan 3, 2024
2 parents beeb68b + a248ab2 commit c7c5112
Show file tree
Hide file tree
Showing 56 changed files with 23,893 additions and 11,488 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-frontend
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.20.0-bullseye
FROM node:18.13.0-buster

# add frontend app src
ADD src/frontend/ /app
Expand Down
1 change: 1 addition & 0 deletions src/frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
!.vscode/extensions.json

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
45 changes: 14 additions & 31 deletions src/frontend/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,
"outputPath": "dist/nefarious",
"index": "src/index.html",
"main": "src/main.ts",
Expand All @@ -29,7 +28,13 @@
"node_modules/@ng-select/ng-select/themes/default.theme.css"
],
"scripts": [
]
],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -49,34 +54,34 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "nefarious:build"
"buildTarget": "nefarious:build"
},
"configurations": {
"production": {
"browserTarget": "nefarious:build:production"
"buildTarget": "nefarious:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "nefarious:build"
"buildTarget": "nefarious:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
//"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
Expand All @@ -89,18 +94,6 @@
"src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
Expand All @@ -119,18 +112,8 @@
"devServerTarget": "nefarious:serve:production"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "e2e/tsconfig.e2e.json",
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "nefarious"
}
}
Loading

0 comments on commit c7c5112

Please sign in to comment.