ignore typescript bug

This commit is contained in:
Tobias Koppers 2019-02-06 09:33:36 +01:00
parent 5a6d6546c1
commit d7d9b9bfa3
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#!/usr/bin/env node
// @ts-ignore
process.exitCode = 0;
/**
@ -164,5 +165,7 @@ if (installedClis.length === 0) {
" and "
)} together. To work with the "webpack" command you need only one CLI package, please remove one of them or use them directly via their binary.`
);
// @ts-ignore
process.exitCode = 1;
}