Comparing version 3.5.1 to 3.5.2
# master | ||
## v3.5.2 (2021-05-03) | ||
#### :bug: Bug Fix | ||
* [#478](https://github.com/broccolijs/broccoli/pull/478) Manually exit process ([@asakusuma](https://github.com/asakusuma)) | ||
#### Committers: 1 | ||
- Asa Kusuma ([@asakusuma](https://github.com/asakusuma)) | ||
## v3.5.1 (2021-02-17) | ||
@@ -4,0 +12,0 @@ |
@@ -112,4 +112,3 @@ "use strict"; | ||
ui.writeError(e); | ||
process.exitCode = 1; | ||
return; | ||
return process.exit(1); | ||
} | ||
@@ -138,4 +137,3 @@ throw e; | ||
ui.writeLine('option --output-path and [target] cannot be passed at same time', 'ERROR'); | ||
process.exitCode = 1; | ||
return; | ||
return process.exit(1); | ||
} | ||
@@ -160,4 +158,3 @@ if (options.outputPath) { | ||
ui.writeError(e); | ||
process.exitCode = 1; | ||
return; | ||
return process.exit(1); | ||
} | ||
@@ -203,2 +200,3 @@ throw e; | ||
} | ||
process.exit(process.exitCode); | ||
} | ||
@@ -208,3 +206,3 @@ catch (e) { | ||
ui.writeError(e); | ||
process.exitCode = 1; | ||
process.exit(1); | ||
} | ||
@@ -220,5 +218,5 @@ } | ||
program.outputHelp(); | ||
process.exitCode = 1; | ||
process.exit(1); | ||
} | ||
}; | ||
//# sourceMappingURL=cli.js.map |
@@ -113,2 +113,3 @@ "use strict"; | ||
} | ||
_process.exit(_process.exitCode); | ||
}) | ||
@@ -118,3 +119,3 @@ .catch(err => { | ||
ui.writeError(err); | ||
_process.exitCode = 1; | ||
_process.exit(1); | ||
}); | ||
@@ -121,0 +122,0 @@ } |
{ | ||
"name": "broccoli", | ||
"version": "3.5.1", | ||
"version": "3.5.2", | ||
"description": "Fast client-side asset builder", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
167683
1912