@getmonoceros/workbench 1.11.0 → 1.11.1
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 +4 -4
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
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
|
|
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:`,
|
|
@@ -3848,13 +3848,13 @@ import path10 from "path";
|
|
|
3848
3848
|
// src/devcontainer/runtime-pull-hint.ts
|
|
3849
3849
|
import { Transform as Transform2 } from "stream";
|
|
3850
3850
|
var RUNTIME_PULL_MARKER = "No manifest found for ghcr.io/getmonoceros/monoceros-runtime";
|
|
3851
|
-
var RUNTIME_PULL_HINT = 'Downloading the Monoceros runtime image now
|
|
3851
|
+
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
3852
|
function createRuntimePullHintStream(state) {
|
|
3853
3853
|
let buffer = "";
|
|
3854
3854
|
const appendHintIfMarker = (block) => {
|
|
3855
3855
|
if (state.hinted || !block.includes(RUNTIME_PULL_MARKER)) return block;
|
|
3856
3856
|
state.hinted = true;
|
|
3857
|
-
return `${block}${dim(
|
|
3857
|
+
return `${block}${dim(`(i) ${RUNTIME_PULL_HINT}`)}
|
|
3858
3858
|
`;
|
|
3859
3859
|
};
|
|
3860
3860
|
return new Transform2({
|
|
@@ -4698,7 +4698,7 @@ async function persistPromptedIdentity(prompted, ymlPath, home, logger) {
|
|
|
4698
4698
|
}
|
|
4699
4699
|
|
|
4700
4700
|
// src/version.ts
|
|
4701
|
-
var CLI_VERSION = true ? "1.11.
|
|
4701
|
+
var CLI_VERSION = true ? "1.11.1" : "dev";
|
|
4702
4702
|
|
|
4703
4703
|
// src/commands/_dispatch.ts
|
|
4704
4704
|
import { consola as consola12 } from "consola";
|