Skip to content

Commit 3da3762

Browse files
authored
Merge pull request #654 from CuppaLabs/version-18
Angular Version 18 support
2 parents 2a5c165 + 422d8a0 commit 3da3762

File tree

8 files changed

+8153
-6274
lines changed

8 files changed

+8153
-6274
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Latest version available for each version of Angular
4646

4747
| angular2-multiselect-dropdown | Angular |
4848
| ----------------------------- | ----------- |
49+
| 10.0.0 | 18.X.X |
4950
| 9.0.0 | 17.X.X |
5051
| 8.0.0 | 16.X.X |
5152
| 7.0.0 | 15.X.X |

angular.json

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@
1818
"prefix": "app",
1919
"architect": {
2020
"build": {
21-
"builder": "@angular-devkit/build-angular:browser",
21+
"builder": "@angular-devkit/build-angular:application",
2222
"options": {
23-
"outputPath": "docs",
23+
"outputPath": {
24+
"base": "docs"
25+
},
2426
"index": "src/index.html",
25-
"main": "src/main.ts",
26-
"polyfills": "src/polyfills.ts",
27+
"polyfills": [
28+
"src/polyfills.ts"
29+
],
2730
"tsConfig": "tsconfig.app.json",
2831
"aot": true,
2932
"assets": [
@@ -37,7 +40,13 @@
3740
],
3841
"scripts": [
3942
"node_modules/bootstrap/dist/js/bootstrap.js"
40-
]
43+
],
44+
"browser": "src/main.ts",
45+
"stylePreprocessorOptions": {
46+
"includePaths": [
47+
"."
48+
]
49+
}
4150
},
4251
"configurations": {
4352
"production": {
@@ -52,8 +61,6 @@
5261
"sourceMap": false,
5362
"namedChunks": false,
5463
"extractLicenses": true,
55-
"vendorChunk": false,
56-
"buildOptimizer": true,
5764
"budgets": [
5865
{
5966
"type": "initial",
@@ -66,8 +73,7 @@
6673
"maximumError": "6kb"
6774
}
6875
],
69-
"serviceWorker": true,
70-
"ngswConfigPath": "ngsw-config.json"
76+
"serviceWorker": "ngsw-config.json"
7177
}
7278
}
7379
},

0 commit comments

Comments
 (0)