Skip to content

Commit

Permalink
Update to ng18 and latest NPM packages
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgeary committed Aug 8, 2024
2 parents 11ecd13 + eff5387 commit e9825f8
Show file tree
Hide file tree
Showing 43 changed files with 13,162 additions and 9,847 deletions.
8 changes: 0 additions & 8 deletions .eslintignore

This file was deleted.

168 changes: 0 additions & 168 deletions .eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.

# Compiled output
/dist
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"configurations": [
{
"name": "ng serve",
"type": "pwa-chrome",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
Expand Down
31 changes: 16 additions & 15 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
"lintFilePatterns": [
"projects/log4ngx/**/*.ts",
"projects/log4ngx/**/*.html"
]
],
"eslintConfig": "projects/log4ngx/eslint.config.js"
}
}
}
Expand Down Expand Up @@ -81,11 +82,13 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/demo",
"outputPath": {
"base": "dist/demo"
},
"index": "projects/demo/src/index.html",
"main": "projects/demo/src/main.ts",
"browser": "projects/demo/src/main.ts",
"polyfills": [
"zone.js"
],
Expand All @@ -104,24 +107,21 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumWarning": "500kB",
"maximumError": "1MB"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
"maximumWarning": "2kB",
"maximumError": "4kB"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,
"fileReplacements": [
{
"replace": "projects/demo/src/environments/environment.ts",
Expand All @@ -136,18 +136,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "demo:build:production"
"buildTarget": "demo:build:production"
},
"development": {
"browserTarget": "demo:build:development"
"buildTarget": "demo:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "demo:build"
"buildTarget": "demo:build"
}
},
"lint": {
Expand All @@ -156,7 +156,8 @@
"lintFilePatterns": [
"projects/demo/**/*.ts",
"projects/demo/**/*.html"
]
],
"eslintConfig": "projects/demo/eslint.config.js"
}
}
}
Expand Down
Loading

0 comments on commit e9825f8

Please sign in to comment.