Merge pull request #1582 from saper/exit-on-config-error
Stop webpack on URL error, otherwise gulp continues
This commit is contained in:
commit
fcc59f877c
|
@ -53,5 +53,5 @@ function normalizeUrl(url: string) {
|
||||||
|
|
||||||
function urlError(url: string) {
|
function urlError(url: string) {
|
||||||
console.error(`「${url}」は、正しいURLではありません。先頭に http:// または https:// をつけ忘れてないかなど確認してください。`);
|
console.error(`「${url}」は、正しいURLではありません。先頭に http:// または https:// をつけ忘れてないかなど確認してください。`);
|
||||||
process.exit();
|
process.exit(99);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue