Skip to content

Commit

Permalink
Merge pull request #654 from CuppaLabs/version-18
Browse files Browse the repository at this point in the history
Angular Version 18 support
  • Loading branch information
CuppaLabs authored Jul 18, 2024
2 parents 2a5c165 + 422d8a0 commit 3da3762
Show file tree
Hide file tree
Showing 8 changed files with 8,153 additions and 6,274 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Latest version available for each version of Angular

| angular2-multiselect-dropdown | Angular |
| ----------------------------- | ----------- |
| 10.0.0 | 18.X.X |
| 9.0.0 | 17.X.X |
| 8.0.0 | 16.X.X |
| 7.0.0 | 15.X.X |
Expand Down
24 changes: 15 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "docs",
"outputPath": {
"base": "docs"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
Expand All @@ -37,7 +40,13 @@
],
"scripts": [
"node_modules/bootstrap/dist/js/bootstrap.js"
]
],
"browser": "src/main.ts",
"stylePreprocessorOptions": {
"includePaths": [
"."
]
}
},
"configurations": {
"production": {
Expand All @@ -52,8 +61,6 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand All @@ -66,8 +73,7 @@
"maximumError": "6kb"
}
],
"serviceWorker": true,
"ngswConfigPath": "ngsw-config.json"
"serviceWorker": "ngsw-config.json"
}
}
},
Expand Down
Loading

0 comments on commit 3da3762

Please sign in to comment.