fix(webpack): set exitCode if the configuration failed (#10327)

fixes #10314
This commit is contained in:
Igor Randjelovic
2024-04-15 19:24:59 +02:00
committed by GitHub
parent 7787ce9449
commit adb4e9d419

View File

@ -83,6 +83,7 @@ program
if (!configuration) {
console.log('No configuration!');
process.exitCode = 1;
return;
}