Skip to content

Commit

Permalink
chore: finish angular v18 update
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiraj-s committed Jun 19, 2024
1 parent 7b58cfd commit 3c352a5
Show file tree
Hide file tree
Showing 13 changed files with 1,938 additions and 364 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ yarn-error.log
/libpeerconnection.log
testem.log
/typings
/.nx/cache

# System files
.DS_Store
Expand Down
25 changes: 13 additions & 12 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@
],
"tsConfig": "projects/demo/tsconfig.app.json",
"assets": [
"projects/demo/src/favicon.ico",
"projects/demo/src/assets"
{
"glob": "**/*",
"input": "projects/demo/public"
}
],
"styles": [
"projects/demo/src/styles.css"
Expand All @@ -76,13 +78,13 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumWarning": "500kB",
"maximumError": "1MB"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
"maximumWarning": "2kB",
"maximumError": "4kB"
}
],
"outputHashing": "all"
Expand All @@ -108,10 +110,7 @@
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "demo:build"
}
"builder": "@angular-devkit/build-angular:extract-i18n"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
Expand All @@ -122,8 +121,10 @@
],
"tsConfig": "projects/demo/tsconfig.spec.json",
"assets": [
"projects/demo/src/favicon.ico",
"projects/demo/src/assets"
{
"glob": "**/*",
"input": "projects/demo/public"
}
],
"styles": [
"projects/demo/src/styles.css"
Expand Down
Loading

0 comments on commit 3c352a5

Please sign in to comment.