Skip to content

Commit

Permalink
build: update to Angular 15
Browse files Browse the repository at this point in the history
Updates the project to use Angular 15.
  • Loading branch information
crisbeto committed Jan 12, 2023
1 parent 3848baa commit 90d2f4b
Show file tree
Hide file tree
Showing 4 changed files with 1,372 additions and 1,831 deletions.
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-svg-round-progressbar",
"version": "9.0.0",
"version": "10.0.0",
"description": "Angular module that uses SVG to create a circular progressbar",
"scripts": {
"ng": "ng",
Expand Down Expand Up @@ -30,36 +30,36 @@
},
"homepage": "https://github.com/crisbeto/angular-svg-round-progressbar",
"peerDependencies": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0"
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1402.4",
"@angular-devkit/build-angular": "^14.2.4",
"@angular-devkit/architect": "^0.1501.0",
"@angular-devkit/build-angular": "^15.1.0",
"@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": "^14.2.4",
"@angular/common": "^14.2.4",
"@angular/compiler": "^14.2.4",
"@angular/compiler-cli": "^14.2.4",
"@angular/core": "^14.2.4",
"@angular/forms": "^14.2.4",
"@angular/platform-browser": "^14.2.4",
"@angular/platform-browser-dynamic": "^14.2.4",
"@typescript-eslint/eslint-plugin": "~5.27.0",
"@typescript-eslint/parser": "~5.27.0",
"angular-cli-ghpages": "^1.0.3",
"@angular/cli": "^15.1.0",
"@angular/common": "^15.1.0",
"@angular/compiler": "^15.1.0",
"@angular/compiler-cli": "^15.1.0",
"@angular/core": "^15.1.0",
"@angular/forms": "^15.1.0",
"@angular/platform-browser": "^15.1.0",
"@angular/platform-browser-dynamic": "^15.1.0",
"@typescript-eslint/eslint-plugin": "~5.48.0",
"@typescript-eslint/parser": "~5.48.0",
"angular-cli-ghpages": "^1.0.5",
"eslint": "^8.24.0",
"eslint-plugin-ban": "^1.5.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^31.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"ng-packagr": "^14.2.1",
"ng-packagr": "^15.1.1",
"rxjs": "~6.6.3",
"tslib": "^2.3.0",
"typescript": "~4.7.3",
"typescript": "~4.9.4",
"zone.js": "~0.11.8"
},
"dependencies": {}
Expand Down
1 change: 0 additions & 1 deletion src/lib/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"compilerOptions": {
"outDir": "../../../out-tsc/lib",
"declarationMap": true,
"target": "es2020",
"declaration": true,
"inlineSources": true,
"types": [],
Expand Down
14 changes: 10 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,18 @@
"module": "es2020",
"moduleResolution": "node",
"importHelpers": true,
"target": "es2020",
"lib": ["es2018", "dom"],
"target": "ES2022",
"lib": [
"es2018",
"dom"
],
"strict": true,
"paths": {
"angular-svg-round-progressbar": ["./src/lib/public-api.ts"]
}
"angular-svg-round-progressbar": [
"./src/lib/public-api.ts"
]
},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
Expand Down
Loading

0 comments on commit 90d2f4b

Please sign in to comment.