@getmonoceros/workbench 1.3.0 → 1.3.2
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 -1
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -2327,6 +2327,12 @@ async function runApply(opts) {
|
|
|
2327
2327
|
logger.success(
|
|
2328
2328
|
`Materialized config '${opts.name}' into ${prettyPath(targetDir)}. Starting container\u2026`
|
|
2329
2329
|
);
|
|
2330
|
+
const dim = (s) => process.stdout.isTTY ? `\x1B[90m${s}\x1B[0m` : s;
|
|
2331
|
+
logger.info(
|
|
2332
|
+
dim(
|
|
2333
|
+
'Pulling runtime image and building feature layers. First apply takes ~1\u20132 min (Docker downloads the multi-arch base); subsequent applies are cached and fast. devcontainer-cli may log a "No manifest found" line \u2014 harmless, the pull continues.'
|
|
2334
|
+
)
|
|
2335
|
+
);
|
|
2330
2336
|
const exitCode = await runContainerCycle(targetDir, {
|
|
2331
2337
|
hasCompose: needsCompose(createOpts),
|
|
2332
2338
|
...opts.cleanupSpawn !== void 0 ? { cleanupSpawn: opts.cleanupSpawn } : {},
|
|
@@ -2376,7 +2382,7 @@ function warnOnDeprecatedFeatureRefs(containerFeatures, globalConfig, logger) {
|
|
|
2376
2382
|
}
|
|
2377
2383
|
|
|
2378
2384
|
// src/version.ts
|
|
2379
|
-
var CLI_VERSION = "1.3.
|
|
2385
|
+
var CLI_VERSION = "1.3.2";
|
|
2380
2386
|
|
|
2381
2387
|
// src/commands/_dispatch.ts
|
|
2382
2388
|
import { consola as consola11 } from "consola";
|