Skip to content

Commit e3fa48b

Browse files
committed
fix(ngx-material-password-strength): added peerDependencies
1 parent b7b1f9e commit e3fa48b

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

gulpfile.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ gulp.task('rollup-bundle', (cb) => {
361361
// Angular dependencies
362362
'@angular/core': 'ng.core',
363363
'@angular/common': 'ng.common',
364+
'@angular/animations': 'ng.animations',
365+
'@angular/cdk': 'ng.cdk',
366+
'@angular/material': 'ng.material',
364367

365368
// Rxjs dependencies
366369
'rxjs/Subject': 'Rx',

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
"check-travis": " travis-status --repo=anthonynahas/ngx-material-password-strength --branch=master --fail-pending || echo 'Not yet passing'"
3232
},
3333
"dependencies": {
34-
"@angular/common": "5.2.9",
35-
"@angular/core": "5.2.9"
34+
"@angular/animations": "^5.2.9",
35+
"@angular/cdk": "^5.2.4",
36+
"@angular/common": "^5.2.9",
37+
"@angular/core": "^5.2.9",
38+
"@angular/material": "^5.2.4"
3639
},
3740
"devDependencies": {
38-
"@angular/animations": "5.2.9",
39-
"@angular/cdk": "5.2.4",
4041
"@angular/compiler": "5.2.9",
4142
"@angular/compiler-cli": "5.2.9",
42-
"@angular/material": "5.2.4",
4343
"@angular/platform-browser": "5.2.9",
4444
"@angular/platform-browser-dynamic": "5.2.9",
4545
"@angular/platform-server": "5.2.9",

0 commit comments

Comments
 (0)