@getmonoceros/workbench 1.38.14 → 1.38.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +7 -2
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -7240,6 +7240,7 @@ function buildSpawnOptions(opts) {
|
|
|
7240
7240
|
if (opts.logSink) out.logSink = opts.logSink;
|
|
7241
7241
|
if (opts.progressSink) out.progressSink = opts.progressSink;
|
|
7242
7242
|
if (opts.silent) out.silent = true;
|
|
7243
|
+
if (opts.quiet) out.quiet = true;
|
|
7243
7244
|
return Object.keys(out).length > 0 ? out : void 0;
|
|
7244
7245
|
}
|
|
7245
7246
|
async function runUpWithBindRetry(attempt, baseSink, logger, opts = {}) {
|
|
@@ -9052,7 +9053,7 @@ var CLI_VERSION;
|
|
|
9052
9053
|
var init_version = __esm({
|
|
9053
9054
|
"src/version.ts"() {
|
|
9054
9055
|
"use strict";
|
|
9055
|
-
CLI_VERSION = true ? "1.38.
|
|
9056
|
+
CLI_VERSION = true ? "1.38.15" : "dev";
|
|
9056
9057
|
}
|
|
9057
9058
|
});
|
|
9058
9059
|
|
|
@@ -12960,7 +12961,7 @@ async function bringContainerUp(name, openTool) {
|
|
|
12960
12961
|
}
|
|
12961
12962
|
const exitCode = await runStart({
|
|
12962
12963
|
root: containerDir(args.name),
|
|
12963
|
-
|
|
12964
|
+
quiet: true,
|
|
12964
12965
|
logger: { info: () => {
|
|
12965
12966
|
} }
|
|
12966
12967
|
});
|
|
@@ -12987,6 +12988,10 @@ async function bringContainerUp(name, openTool) {
|
|
|
12987
12988
|
}
|
|
12988
12989
|
if (exitCode === 0) {
|
|
12989
12990
|
consola38.success(`Container '${args.name}' is up.`);
|
|
12991
|
+
} else {
|
|
12992
|
+
consola38.error(
|
|
12993
|
+
`Container '${args.name}' failed to start (devcontainer up exited ${exitCode}).`
|
|
12994
|
+
);
|
|
12990
12995
|
}
|
|
12991
12996
|
if (args.open && exitCode === 0) {
|
|
12992
12997
|
try {
|