Skip to content

Commit 5042e3b

Browse files
committed
Fix typo
1 parent 4ffbbf3 commit 5042e3b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/dependency-checker.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class EmberCLIDependencyChecker {
4141
}
4242

4343
const bowerDeps = this.readBowerDependencies();
44-
this.reporter.unsatisifedPackages('bower', bowerDeps.filter(isUnsatisfied));
44+
this.reporter.unsatisfiedPackages('bower', bowerDeps.filter(isUnsatisfied));
4545

4646
const npmDeps = this.readNPMDependencies();
4747
const filteredDeps = npmDeps.filter(isUnsatisfied);
@@ -57,11 +57,11 @@ class EmberCLIDependencyChecker {
5757
}
5858

5959
this.reporter.reportUnsatisfiedSymlinkedPackages(packageManagerName, symlinkedDeps);
60-
this.reporter.unsatisifedPackages(packageManagerName, unsatisfiedDeps);
60+
this.reporter.unsatisfiedPackages(packageManagerName, unsatisfiedDeps);
6161

6262
if (unsatisfiedDeps.length === 0) {
6363
const shrinkWrapDeps = this.readShrinkwrapDeps();
64-
this.reporter.unsatisifedPackages('npm-shrinkwrap', shrinkWrapDeps.filter(isUnsatisfied));
64+
this.reporter.unsatisfiedPackages('npm-shrinkwrap', shrinkWrapDeps.filter(isUnsatisfied));
6565
}
6666

6767
EmberCLIDependencyChecker.setAlreadyChecked(true);

lib/reporter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Reporter {
1818
this.messages = [];
1919
}
2020

21-
unsatisifedPackages(type, packages) {
21+
unsatisfiedPackages(type, packages) {
2222
this.chalk = this.chalk || require('chalk');
2323
this.EOL = this.EOL || require('os').EOL;
2424

0 commit comments

Comments
 (0)