Skip to content

Commit

Permalink
- Angular upgrade to version 18:
Browse files Browse the repository at this point in the history
 - code changes. Markdown rendering still broken
 - upgrade other peer dependencies
  • Loading branch information
nbarrett committed Dec 3, 2024
1 parent f34ecc2 commit 2e83a7f
Show file tree
Hide file tree
Showing 40 changed files with 13,147 additions and 12,373 deletions.
22 changes: 12 additions & 10 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"allowedCommonJsDependencies": [
"lodash"
],
"outputPath": "dist/ngx-ramblers",
"outputPath": {
"base": "dist/ngx-ramblers"
},
"index": "projects/ngx-ramblers/src/index.html",
"main": "projects/ngx-ramblers/src/main.ts",
"polyfills": "projects/ngx-ramblers/src/polyfills.ts",
"polyfills": [
"projects/ngx-ramblers/src/polyfills.ts"
],
"tsConfig": "projects/ngx-ramblers/tsconfig.app.json",
"inlineStyleLanguage": "sass",
"assets": [
Expand All @@ -44,7 +47,8 @@
"./node_modules/jquery/dist/jquery.slim.min.js",
"./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js",
"./node_modules/marked/marked.min.js"
]
],
"browser": "projects/ngx-ramblers/src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -70,9 +74,7 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand All @@ -87,18 +89,18 @@
},
"configurations": {
"production": {
"browserTarget": "ngx-ramblers:build:production"
"buildTarget": "ngx-ramblers:build:production"
},
"development": {
"browserTarget": "ngx-ramblers:build:development"
"buildTarget": "ngx-ramblers:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ngx-ramblers:build"
"buildTarget": "ngx-ramblers:build"
}
},
"test": {
Expand Down
Loading

0 comments on commit 2e83a7f

Please sign in to comment.