mirror of https://github.com/webpack/webpack.git
ignore typescript bug
This commit is contained in:
parent
5a6d6546c1
commit
d7d9b9bfa3
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
process.exitCode = 0;
|
process.exitCode = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -164,5 +165,7 @@ if (installedClis.length === 0) {
|
||||||
" and "
|
" 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.`
|
)} 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;
|
process.exitCode = 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue