Skip to content

Commit

Permalink
feat: support Angular 13
Browse files Browse the repository at this point in the history
Adds support for Angular version 13.
  • Loading branch information
crisbeto committed Nov 13, 2021
1 parent cdfc4fd commit 7ec509f
Show file tree
Hide file tree
Showing 5 changed files with 1,010 additions and 808 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ speed-measure-plugin*.json
.history/*

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-svg-round-progressbar",
"version": "7.0.0",
"version": "8.0.0",
"description": "Angular module that uses SVG to create a circular progressbar",
"scripts": {
"ng": "ng",
Expand Down Expand Up @@ -34,30 +34,30 @@
"@angular/core": "^13.0.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1300.0-next.7",
"@angular-devkit/build-angular": "~13.0.0-next.7",
"@angular-eslint/builder": "~12.5.0",
"@angular-eslint/eslint-plugin": "~12.5.0",
"@angular-eslint/eslint-plugin-template": "~12.5.0",
"@angular-eslint/schematics": "~12.5.0",
"@angular-eslint/template-parser": "~12.5.0",
"@angular/cli": "~13.0.0-next.7",
"@angular/common": "~13.0.0-next.9",
"@angular/compiler": "~13.0.0-next.9",
"@angular/compiler-cli": "~13.0.0-next.9",
"@angular/core": "~13.0.0-next.9",
"@angular/forms": "~13.0.0-next.9",
"@angular/platform-browser": "~13.0.0-next.9",
"@angular/platform-browser-dynamic": "~13.0.0-next.9",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"@angular-devkit/architect": "^0.1300.2",
"@angular-devkit/build-angular": "~13.0.2",
"@angular-eslint/builder": "~12.6.1",
"@angular-eslint/eslint-plugin": "~12.6.1",
"@angular-eslint/eslint-plugin-template": "~12.6.1",
"@angular-eslint/schematics": "~12.6.1",
"@angular-eslint/template-parser": "~12.6.1",
"@angular/cli": "~13.0.2",
"@angular/common": "~13.0.1",
"@angular/compiler": "~13.0.1",
"@angular/compiler-cli": "~13.0.1",
"@angular/core": "~13.0.1",
"@angular/forms": "~13.0.1",
"@angular/platform-browser": "~13.0.1",
"@angular/platform-browser-dynamic": "~13.0.1",
"@typescript-eslint/eslint-plugin": "~4.33.0",
"@typescript-eslint/parser": "~4.33.0",
"angular-cli-ghpages": "^1.0.0-rc.2",
"eslint": "^7.26.0",
"eslint": "^7.32.0",
"eslint-plugin-ban": "^1.5.2",
"eslint-plugin-import": "^2.42.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^31.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"ng-packagr": "~13.0.0-next.5",
"ng-packagr": "~13.0.3",
"rxjs": "~6.6.3",
"tslib": "^2.3.0",
"typescript": "~4.4.2",
Expand Down
10 changes: 0 additions & 10 deletions src/demo/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,6 @@
* BROWSER POLYFILLS
*/

/** IE10 and IE11 requires the following for NgClass support on SVG elements */
// import 'classlist.js'; // Run `npm install --save classlist.js`.

/**
* Web Animations `@angular/platform-browser/animations`
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
*/
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.

/***************************************************************************************************
* Zone JS is required by default for Angular itself.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/lib/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"declarationMap": false
},
"angularCompilerOptions": {
"enableIvy": false
"compilationMode": "partial"
}
}
Loading

0 comments on commit 7ec509f

Please sign in to comment.