@getmonoceros/workbench 1.3.1 → 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 CHANGED
@@ -2327,8 +2327,11 @@ 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;
2330
2331
  logger.info(
2331
- '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.'
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
+ )
2332
2335
  );
2333
2336
  const exitCode = await runContainerCycle(targetDir, {
2334
2337
  hasCompose: needsCompose(createOpts),
@@ -2379,7 +2382,7 @@ function warnOnDeprecatedFeatureRefs(containerFeatures, globalConfig, logger) {
2379
2382
  }
2380
2383
 
2381
2384
  // src/version.ts
2382
- var CLI_VERSION = "1.3.1";
2385
+ var CLI_VERSION = "1.3.2";
2383
2386
 
2384
2387
  // src/commands/_dispatch.ts
2385
2388
  import { consola as consola11 } from "consola";