Skip to content

Commit

Permalink
Merge pull request #25 from rwjblue/add-env-var-opt-out
Browse files Browse the repository at this point in the history
Add an ENV variable to allow opting out.
  • Loading branch information
quaertym committed Mar 22, 2015
2 parents f367c35 + a7c7ff3 commit f7ee071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dependency-checker.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function EmberCLIDependencyChecker(project) {

EmberCLIDependencyChecker.prototype.checkDependencies = function() {

if(alreadyChecked) {
if(alreadyChecked || process.env.SKIP_DEPENDENCY_CHECKER) {
return;
}

Expand Down

0 comments on commit f7ee071

Please sign in to comment.