@getmonoceros/workbench 1.11.0 → 1.11.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
@@ -112,7 +112,7 @@ function formatWslBackendHint() {
112
112
  return [
113
113
  `Docker's daemon isn't reachable, and no WSL 2 distro is registered.`,
114
114
  `Docker Desktop runs on the WSL 2 backend, so without a distro it`,
115
- `can't start \u2014 often shown as the misleading "Virtualization support`,
115
+ `can't start -- often shown as the misleading "Virtualization support`,
116
116
  `not detected" (even with virtualization enabled in BIOS).`,
117
117
  ``,
118
118
  `Fix it in an elevated PowerShell:`,
@@ -121,8 +121,7 @@ function formatWslBackendHint() {
121
121
  cyan(` wsl --update`),
122
122
  cyan(` wsl --install -d Ubuntu`),
123
123
  ``,
124
- `Then reboot and start Docker Desktop. Full walkthrough:`,
125
- `docs/install-windows.md in the workbench repo.`
124
+ `Then reboot and start Docker Desktop.`
126
125
  ].join("\n");
127
126
  }
128
127
  function defaultProbe2(cmd, args) {
@@ -3848,13 +3847,13 @@ import path10 from "path";
3848
3847
  // src/devcontainer/runtime-pull-hint.ts
3849
3848
  import { Transform as Transform2 } from "stream";
3850
3849
  var RUNTIME_PULL_MARKER = "No manifest found for ghcr.io/getmonoceros/monoceros-runtime";
3851
- var RUNTIME_PULL_HINT = 'Downloading the Monoceros runtime image now \u2014 expected on first apply, takes ~1\u20132 min (Docker pulls the multi-arch base with no progress output). The "No manifest found" line above is harmless. Please wait\u2026';
3850
+ var RUNTIME_PULL_HINT = 'Downloading the Monoceros runtime image now -- expected on first apply, takes ~1-2 min (Docker pulls the multi-arch base with no progress output). The "No manifest found" line above is harmless. Please wait...';
3852
3851
  function createRuntimePullHintStream(state) {
3853
3852
  let buffer = "";
3854
3853
  const appendHintIfMarker = (block) => {
3855
3854
  if (state.hinted || !block.includes(RUNTIME_PULL_MARKER)) return block;
3856
3855
  state.hinted = true;
3857
- return `${block}${dim(`\u2139 ${RUNTIME_PULL_HINT}`)}
3856
+ return `${block}${dim(`(i) ${RUNTIME_PULL_HINT}`)}
3858
3857
  `;
3859
3858
  };
3860
3859
  return new Transform2({
@@ -4698,7 +4697,7 @@ async function persistPromptedIdentity(prompted, ymlPath, home, logger) {
4698
4697
  }
4699
4698
 
4700
4699
  // src/version.ts
4701
- var CLI_VERSION = true ? "1.11.0" : "dev";
4700
+ var CLI_VERSION = true ? "1.11.2" : "dev";
4702
4701
 
4703
4702
  // src/commands/_dispatch.ts
4704
4703
  import { consola as consola12 } from "consola";