Skip to content

Commit

Permalink
feat: support Angular 18 (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicorivat committed Jun 5, 2024
1 parent 2a75807 commit d629cb3
Show file tree
Hide file tree
Showing 4 changed files with 8,019 additions and 8,334 deletions.
21 changes: 12 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,26 @@
"prefix": "demo",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/demo",
"outputPath": {
"base": "dist/demo"
},
"index": "src/demo/index.html",
"main": "src/demo/main.ts",
"polyfills": "src/demo/polyfills.ts",
"polyfills": [
"src/demo/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"assets": [],
"styles": [
"src/demo/styles.css"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "src/demo/main.ts"
},
"configurations": {
"production": {
Expand All @@ -42,8 +44,6 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand Down Expand Up @@ -115,5 +115,8 @@
}
}
}
},
"cli": {
"analytics": false
}
}
29 changes: 13 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,22 @@
"url": "https://github.com/crisbeto/angular-svg-round-progressbar/issues"
},
"homepage": "https://github.com/crisbeto/angular-svg-round-progressbar",
"peerDependencies": {
"@angular/common": "^17.0.0",
"@angular/core": "^17.0.0"
},
"peerDependencies": {},
"devDependencies": {
"@angular-devkit/architect": "^0.1700.5",
"@angular-devkit/build-angular": "^17.0.5",
"@angular-devkit/architect": "^0.1800.2",
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "~14.1.2",
"@angular-eslint/eslint-plugin": "~14.1.2",
"@angular-eslint/eslint-plugin-template": "~14.1.2",
"@angular-eslint/template-parser": "~14.1.2",
"@angular/cli": "^17.0.5",
"@angular/common": "^17.0.5",
"@angular/compiler": "^17.0.5",
"@angular/compiler-cli": "^17.0.5",
"@angular/core": "^17.0.5",
"@angular/forms": "^17.0.5",
"@angular/platform-browser": "^17.0.5",
"@angular/platform-browser-dynamic": "^17.0.5",
"@angular/cli": "^18.0.2",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/compiler-cli": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@typescript-eslint/eslint-plugin": "~6.13.1",
"@typescript-eslint/parser": "~6.13.1",
"angular-cli-ghpages": "^1.0.7",
Expand All @@ -56,10 +53,10 @@
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^31.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"ng-packagr": "^17.0.2",
"ng-packagr": "^18.0.0",
"rxjs": "~6.6.3",
"tslib": "^2.3.0",
"typescript": "~5.2.2",
"typescript": "~5.4.5",
"zone.js": "~0.14.2"
},
"dependencies": {}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"esModuleInterop": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "es2020",
"moduleResolution": "node",
Expand Down
Loading

0 comments on commit d629cb3

Please sign in to comment.