Skip to content

Commit f7ee071

Browse files
committed
Merge pull request #25 from rwjblue/add-env-var-opt-out
Add an ENV variable to allow opting out.
2 parents f367c35 + a7c7ff3 commit f7ee071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dependency-checker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function EmberCLIDependencyChecker(project) {
2121

2222
EmberCLIDependencyChecker.prototype.checkDependencies = function() {
2323

24-
if(alreadyChecked) {
24+
if(alreadyChecked || process.env.SKIP_DEPENDENCY_CHECKER) {
2525
return;
2626
}
2727

0 commit comments

Comments
 (0)