Skip to content

Commit

Permalink
refactor(angular 18): updated to ng18 and made necessary refactors
Browse files Browse the repository at this point in the history
  • Loading branch information
FreekMencke committed May 23, 2024
1 parent 0fe3da4 commit 6b0ef93
Show file tree
Hide file tree
Showing 51 changed files with 3,472 additions and 3,241 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2024/05/23

- Updated to Angular 18
- Updated all dependencies to their latest versions
- Use zoneless change detection, removed zone.js
- Use new signal input/output/... notation

## 2024/04/06

- Add missing colliseum glory icon
Expand Down
16 changes: 8 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser-esbuild",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/osrs-tracker-web",
"outputPath": {
"base": "dist/osrs-tracker-web"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": ["zone.js"],
"polyfills": [],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
Expand All @@ -35,15 +36,14 @@
"styles": ["src/styles/tailwind/index.scss", "src/styles/index.scss"],
"scripts": [],
"allowedCommonJsDependencies": ["hammerjs"],
"serviceWorker": true,
"ngswConfigPath": "ngsw-config.json"
"serviceWorker": "ngsw-config.json",
"browser": "src/main.ts"
},
"configurations": {
"production": {
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
Expand All @@ -68,7 +68,7 @@
"builder": "@angular-devkit/build-angular:jest",
"options": {
"tsConfig": "tsconfig.spec.json",
"polyfills": ["zone.js", "zone.js/testing"]
"polyfills": []
}
},
"extract-i18n": {
Expand Down
Loading

0 comments on commit 6b0ef93

Please sign in to comment.