Skip to content

Commit

Permalink
build: upgrade to Angular 18
Browse files Browse the repository at this point in the history
  • Loading branch information
cerinoligutom committed Jun 2, 2024
1 parent 2e035fc commit 483407b
Show file tree
Hide file tree
Showing 7 changed files with 1,862 additions and 1,803 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Latest version available for each version of Angular
| >= 1.2 | 15.x | < 1.x |
| >= 2.0 | 16.x | < 1.x |
| >= 3.0 | 17.x | < 1.x |
| >= 4.0 | 18.x | < 1.x |

## Installation

Expand Down
16 changes: 9 additions & 7 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,15 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/ngx-fluent-example",
"outputPath": {
"base": "dist/ngx-fluent-example"
},
"index": "projects/ngx-fluent-example/src/index.html",
"main": "projects/ngx-fluent-example/src/main.ts",
"polyfills": "projects/ngx-fluent-example/src/polyfills.ts",
"polyfills": [
"projects/ngx-fluent-example/src/polyfills.ts"
],
"tsConfig": "projects/ngx-fluent-example/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
Expand All @@ -70,7 +73,8 @@
"styles": [
"projects/ngx-fluent-example/src/styles.scss"
],
"scripts": []
"scripts": [],
"browser": "projects/ngx-fluent-example/src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -95,9 +99,7 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand Down
Loading

0 comments on commit 483407b

Please sign in to comment.