File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class EmberCLIDependencyChecker {
41
41
}
42
42
43
43
const bowerDeps = this . readBowerDependencies ( ) ;
44
- this . reporter . unsatisifedPackages ( 'bower' , bowerDeps . filter ( isUnsatisfied ) ) ;
44
+ this . reporter . unsatisfiedPackages ( 'bower' , bowerDeps . filter ( isUnsatisfied ) ) ;
45
45
46
46
const npmDeps = this . readNPMDependencies ( ) ;
47
47
const filteredDeps = npmDeps . filter ( isUnsatisfied ) ;
@@ -57,11 +57,11 @@ class EmberCLIDependencyChecker {
57
57
}
58
58
59
59
this . reporter . reportUnsatisfiedSymlinkedPackages ( packageManagerName , symlinkedDeps ) ;
60
- this . reporter . unsatisifedPackages ( packageManagerName , unsatisfiedDeps ) ;
60
+ this . reporter . unsatisfiedPackages ( packageManagerName , unsatisfiedDeps ) ;
61
61
62
62
if ( unsatisfiedDeps . length === 0 ) {
63
63
const shrinkWrapDeps = this . readShrinkwrapDeps ( ) ;
64
- this . reporter . unsatisifedPackages ( 'npm-shrinkwrap' , shrinkWrapDeps . filter ( isUnsatisfied ) ) ;
64
+ this . reporter . unsatisfiedPackages ( 'npm-shrinkwrap' , shrinkWrapDeps . filter ( isUnsatisfied ) ) ;
65
65
}
66
66
67
67
EmberCLIDependencyChecker . setAlreadyChecked ( true ) ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class Reporter {
18
18
this . messages = [ ] ;
19
19
}
20
20
21
- unsatisifedPackages ( type , packages ) {
21
+ unsatisfiedPackages ( type , packages ) {
22
22
this . chalk = this . chalk || require ( 'chalk' ) ;
23
23
this . EOL = this . EOL || require ( 'os' ) . EOL ;
24
24
You can’t perform that action at this time.
0 commit comments