We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db51b4b commit 18fffd2Copy full SHA for 18fffd2
index.js
@@ -12,9 +12,7 @@ module.exports = {
12
const emberPosition = process.argv.findIndex(arg => arg.endsWith('/ember'));
13
const ranWithInit = process.argv[emberPosition + 1] === 'init';
14
15
- if (ranWithInit) {
16
- process.emitWarning('Skipped dependency checker…');
17
- } else {
+ if (!ranWithInit) {
18
const reporter = new Reporter();
19
const dependencyChecker = new DependencyChecker(this.project, reporter);
20
dependencyChecker.checkDependencies();
0 commit comments