Skip to content

Commit 7ec509f

Browse files
committed
feat: support Angular 13
Adds support for Angular version 13.
1 parent cdfc4fd commit 7ec509f

File tree

5 files changed

+1010
-808
lines changed

5 files changed

+1010
-808
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ speed-measure-plugin*.json
3232
.history/*
3333

3434
# misc
35+
/.angular/cache
3536
/.sass-cache
3637
/connect.lock
3738
/coverage

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-svg-round-progressbar",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"description": "Angular module that uses SVG to create a circular progressbar",
55
"scripts": {
66
"ng": "ng",
@@ -34,30 +34,30 @@
3434
"@angular/core": "^13.0.0"
3535
},
3636
"devDependencies": {
37-
"@angular-devkit/architect": "^0.1300.0-next.7",
38-
"@angular-devkit/build-angular": "~13.0.0-next.7",
39-
"@angular-eslint/builder": "~12.5.0",
40-
"@angular-eslint/eslint-plugin": "~12.5.0",
41-
"@angular-eslint/eslint-plugin-template": "~12.5.0",
42-
"@angular-eslint/schematics": "~12.5.0",
43-
"@angular-eslint/template-parser": "~12.5.0",
44-
"@angular/cli": "~13.0.0-next.7",
45-
"@angular/common": "~13.0.0-next.9",
46-
"@angular/compiler": "~13.0.0-next.9",
47-
"@angular/compiler-cli": "~13.0.0-next.9",
48-
"@angular/core": "~13.0.0-next.9",
49-
"@angular/forms": "~13.0.0-next.9",
50-
"@angular/platform-browser": "~13.0.0-next.9",
51-
"@angular/platform-browser-dynamic": "~13.0.0-next.9",
52-
"@typescript-eslint/eslint-plugin": "4.28.2",
53-
"@typescript-eslint/parser": "4.28.2",
37+
"@angular-devkit/architect": "^0.1300.2",
38+
"@angular-devkit/build-angular": "~13.0.2",
39+
"@angular-eslint/builder": "~12.6.1",
40+
"@angular-eslint/eslint-plugin": "~12.6.1",
41+
"@angular-eslint/eslint-plugin-template": "~12.6.1",
42+
"@angular-eslint/schematics": "~12.6.1",
43+
"@angular-eslint/template-parser": "~12.6.1",
44+
"@angular/cli": "~13.0.2",
45+
"@angular/common": "~13.0.1",
46+
"@angular/compiler": "~13.0.1",
47+
"@angular/compiler-cli": "~13.0.1",
48+
"@angular/core": "~13.0.1",
49+
"@angular/forms": "~13.0.1",
50+
"@angular/platform-browser": "~13.0.1",
51+
"@angular/platform-browser-dynamic": "~13.0.1",
52+
"@typescript-eslint/eslint-plugin": "~4.33.0",
53+
"@typescript-eslint/parser": "~4.33.0",
5454
"angular-cli-ghpages": "^1.0.0-rc.2",
55-
"eslint": "^7.26.0",
55+
"eslint": "^7.32.0",
5656
"eslint-plugin-ban": "^1.5.2",
57-
"eslint-plugin-import": "^2.42.2",
57+
"eslint-plugin-import": "^2.25.2",
5858
"eslint-plugin-jsdoc": "^31.1.0",
5959
"eslint-plugin-prefer-arrow": "^1.2.3",
60-
"ng-packagr": "~13.0.0-next.5",
60+
"ng-packagr": "~13.0.3",
6161
"rxjs": "~6.6.3",
6262
"tslib": "^2.3.0",
6363
"typescript": "~4.4.2",

src/demo/polyfills.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,6 @@
1818
* BROWSER POLYFILLS
1919
*/
2020

21-
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
22-
// import 'classlist.js'; // Run `npm install --save classlist.js`.
23-
24-
/**
25-
* Web Animations `@angular/platform-browser/animations`
26-
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
27-
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
28-
*/
29-
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
30-
3121
/***************************************************************************************************
3222
* Zone JS is required by default for Angular itself.
3323
*/

src/lib/tsconfig.lib.prod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"declarationMap": false
55
},
66
"angularCompilerOptions": {
7-
"enableIvy": false
7+
"compilationMode": "partial"
88
}
99
}

0 commit comments

Comments
 (0)