Skip to content

Commit d629cb3

Browse files
authored
feat: support Angular 18 (#237)
1 parent 2a75807 commit d629cb3

File tree

4 files changed

+8019
-8334
lines changed

4 files changed

+8019
-8334
lines changed

angular.json

+12-9
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,26 @@
1111
"prefix": "demo",
1212
"architect": {
1313
"build": {
14-
"builder": "@angular-devkit/build-angular:browser",
14+
"builder": "@angular-devkit/build-angular:application",
1515
"options": {
16-
"outputPath": "dist/demo",
16+
"outputPath": {
17+
"base": "dist/demo"
18+
},
1719
"index": "src/demo/index.html",
18-
"main": "src/demo/main.ts",
19-
"polyfills": "src/demo/polyfills.ts",
20+
"polyfills": [
21+
"src/demo/polyfills.ts"
22+
],
2023
"tsConfig": "tsconfig.app.json",
2124
"assets": [],
2225
"styles": [
2326
"src/demo/styles.css"
2427
],
2528
"scripts": [],
26-
"vendorChunk": true,
2729
"extractLicenses": false,
28-
"buildOptimizer": false,
2930
"sourceMap": true,
3031
"optimization": false,
31-
"namedChunks": true
32+
"namedChunks": true,
33+
"browser": "src/demo/main.ts"
3234
},
3335
"configurations": {
3436
"production": {
@@ -42,8 +44,6 @@
4244
"outputHashing": "all",
4345
"sourceMap": false,
4446
"namedChunks": false,
45-
"vendorChunk": false,
46-
"buildOptimizer": true,
4747
"budgets": [
4848
{
4949
"type": "initial",
@@ -115,5 +115,8 @@
115115
}
116116
}
117117
}
118+
},
119+
"cli": {
120+
"analytics": false
118121
}
119122
}

package.json

+13-16
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,22 @@
2929
"url": "https://github.com/crisbeto/angular-svg-round-progressbar/issues"
3030
},
3131
"homepage": "https://github.com/crisbeto/angular-svg-round-progressbar",
32-
"peerDependencies": {
33-
"@angular/common": "^17.0.0",
34-
"@angular/core": "^17.0.0"
35-
},
32+
"peerDependencies": {},
3633
"devDependencies": {
37-
"@angular-devkit/architect": "^0.1700.5",
38-
"@angular-devkit/build-angular": "^17.0.5",
34+
"@angular-devkit/architect": "^0.1800.2",
35+
"@angular-devkit/build-angular": "^18.0.2",
3936
"@angular-eslint/builder": "~14.1.2",
4037
"@angular-eslint/eslint-plugin": "~14.1.2",
4138
"@angular-eslint/eslint-plugin-template": "~14.1.2",
4239
"@angular-eslint/template-parser": "~14.1.2",
43-
"@angular/cli": "^17.0.5",
44-
"@angular/common": "^17.0.5",
45-
"@angular/compiler": "^17.0.5",
46-
"@angular/compiler-cli": "^17.0.5",
47-
"@angular/core": "^17.0.5",
48-
"@angular/forms": "^17.0.5",
49-
"@angular/platform-browser": "^17.0.5",
50-
"@angular/platform-browser-dynamic": "^17.0.5",
40+
"@angular/cli": "^18.0.2",
41+
"@angular/common": "^18.0.1",
42+
"@angular/compiler": "^18.0.1",
43+
"@angular/compiler-cli": "^18.0.1",
44+
"@angular/core": "^18.0.1",
45+
"@angular/forms": "^18.0.1",
46+
"@angular/platform-browser": "^18.0.1",
47+
"@angular/platform-browser-dynamic": "^18.0.1",
5148
"@typescript-eslint/eslint-plugin": "~6.13.1",
5249
"@typescript-eslint/parser": "~6.13.1",
5350
"angular-cli-ghpages": "^1.0.7",
@@ -56,10 +53,10 @@
5653
"eslint-plugin-import": "^2.25.2",
5754
"eslint-plugin-jsdoc": "^31.1.0",
5855
"eslint-plugin-prefer-arrow": "^1.2.3",
59-
"ng-packagr": "^17.0.2",
56+
"ng-packagr": "^18.0.0",
6057
"rxjs": "~6.6.3",
6158
"tslib": "^2.3.0",
62-
"typescript": "~5.2.2",
59+
"typescript": "~5.4.5",
6360
"zone.js": "~0.14.2"
6461
},
6562
"dependencies": {}

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"baseUrl": "./",
55
"outDir": "./dist/out-tsc",
66
"sourceMap": true,
7+
"esModuleInterop": true,
78
"declaration": false,
8-
"downlevelIteration": true,
99
"experimentalDecorators": true,
1010
"module": "es2020",
1111
"moduleResolution": "node",

0 commit comments

Comments
 (0)