Skip to content

Commit

Permalink
chore: migrate to ng and cli v13
Browse files Browse the repository at this point in the history
BREAKING CHANGE: `ngx-valdemort` is now based on Angular 13.x. If you want to use it with an older version of Angular, then stick to the previous version of `ngx-valdemort`.
  • Loading branch information
cexbrayat committed Nov 4, 2021
1 parent 14a0da6 commit 2fa7cb0
Show file tree
Hide file tree
Showing 5 changed files with 1,167 additions and 2,801 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ chrome-profiler-events.json
.history/*

# misc
/.angular/cache
/.sass-cache
/connect.lock
**/coverage
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
},
"private": true,
"dependencies": {
"@angular/animations": "12.2.13",
"@angular/cdk": "12.2.12",
"@angular/common": "12.2.13",
"@angular/compiler": "12.2.13",
"@angular/core": "12.2.13",
"@angular/forms": "12.2.13",
"@angular/animations": "13.0.0",
"@angular/cdk": "13.0.0",
"@angular/common": "13.0.0",
"@angular/compiler": "13.0.0",
"@angular/core": "13.0.0",
"@angular/forms": "13.0.0",
"@angular/material": "12.2.12",
"@angular/platform-browser": "12.2.13",
"@angular/platform-browser-dynamic": "12.2.13",
"@angular/router": "12.2.13",
"@angular/platform-browser": "13.0.0",
"@angular/platform-browser-dynamic": "13.0.0",
"@angular/router": "13.0.0",
"@ng-bootstrap/ng-bootstrap": "10.0.0",
"bootstrap": "4.6.1",
"font-awesome": "4.7.0",
Expand All @@ -37,14 +37,14 @@
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.2.13",
"@angular-devkit/build-angular": "13.0.1",
"@angular-eslint/builder": "12.6.1",
"@angular-eslint/eslint-plugin": "12.6.1",
"@angular-eslint/eslint-plugin-template": "12.6.1",
"@angular-eslint/template-parser": "12.6.1",
"@angular/cli": "12.2.13",
"@angular/compiler-cli": "12.2.13",
"@angular/localize": "12.2.13",
"@angular/cli": "13.0.1",
"@angular/compiler-cli": "13.0.0",
"@angular/localize": "13.0.0",
"@compodoc/compodoc": "1.1.15",
"@types/jasmine": "3.10.2",
"@types/node": "16.11.6",
Expand All @@ -63,10 +63,10 @@
"karma-coverage": "2.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"ng-packagr": "12.2.5",
"ngx-speculoos": "6.0.0",
"ng-packagr": "13.0.0",
"ngx-speculoos": "7.0.0",
"prettier": "2.4.1",
"standard-version": "9.3.2",
"typescript": "4.2.4"
"typescript": "4.4.4"
}
}
12 changes: 0 additions & 12 deletions projects/demo/src/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,6 @@
* BROWSER POLYFILLS
*/

/**
* 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`.

/**
* By default, zone.js will patch all possible macroTask and DomEvents
* user can disable parts of macroTask/DomEvents patch by setting following flags
Expand Down
6 changes: 3 additions & 3 deletions projects/ngx-valdemort/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "6.0.0",
"description": "Simple, consistent validation error messages for your Angular forms",
"peerDependencies": {
"@angular/common": "^12.0.0",
"@angular/core": "^12.0.0",
"@angular/forms": "^12.0.0"
"@angular/common": "^13.0.0",
"@angular/core": "^13.0.0",
"@angular/forms": "^13.0.0"
},
"license": "MIT",
"repository": {
Expand Down
Loading

0 comments on commit 2fa7cb0

Please sign in to comment.