@getmonoceros/workbench 1.17.0 → 1.17.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/README.md +1 -1
- package/dist/bin.js +8 -4
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ monoceros completion bash > ~/.bash_completion.d/monoceros # bash
|
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
Full command reference at
|
|
49
|
-
[docs
|
|
49
|
+
[getmonoceros.build/docs](https://getmonoceros.build/docs/).
|
|
50
50
|
|
|
51
51
|
## License
|
|
52
52
|
|
package/dist/bin.js
CHANGED
|
@@ -6293,7 +6293,7 @@ var CLI_VERSION;
|
|
|
6293
6293
|
var init_version = __esm({
|
|
6294
6294
|
"src/version.ts"() {
|
|
6295
6295
|
"use strict";
|
|
6296
|
-
CLI_VERSION = true ? "1.17.
|
|
6296
|
+
CLI_VERSION = true ? "1.17.1" : "dev";
|
|
6297
6297
|
}
|
|
6298
6298
|
});
|
|
6299
6299
|
|
|
@@ -6455,8 +6455,8 @@ var init_completion = __esm({
|
|
|
6455
6455
|
name: "completion",
|
|
6456
6456
|
group: "tooling",
|
|
6457
6457
|
// Hidden from `monoceros --help`: the install scripts wire up
|
|
6458
|
-
// completion automatically; manual setup is documented
|
|
6459
|
-
// docs/
|
|
6458
|
+
// completion automatically; manual setup is documented at
|
|
6459
|
+
// getmonoceros.build/docs/reference/utilities/completion. Still runnable directly.
|
|
6460
6460
|
hidden: true,
|
|
6461
6461
|
description: "Print a shell completion script for bash, zsh or PowerShell to stdout. Pipe the output into a file your shell loads at startup. The install scripts (install.sh / install.ps1) call this automatically."
|
|
6462
6462
|
},
|
|
@@ -6551,6 +6551,7 @@ function dispatchCommand(spec, argTokens, ctx) {
|
|
|
6551
6551
|
if (inPostDash && spec.innerArgs) {
|
|
6552
6552
|
return resolveValues(spec.innerArgs, ctx, ctx.current);
|
|
6553
6553
|
}
|
|
6554
|
+
if (inPostDash) return [];
|
|
6554
6555
|
return resolvePreDash(spec, preDash, ctx);
|
|
6555
6556
|
}
|
|
6556
6557
|
async function resolvePreDash(spec, preDash, ctx) {
|
|
@@ -6777,7 +6778,10 @@ var init_resolve = __esm({
|
|
|
6777
6778
|
}
|
|
6778
6779
|
},
|
|
6779
6780
|
shell: { positionals: [containerName] },
|
|
6780
|
-
run: {
|
|
6781
|
+
run: {
|
|
6782
|
+
positionals: [containerName],
|
|
6783
|
+
flags: { "--in": { type: "value" } }
|
|
6784
|
+
},
|
|
6781
6785
|
logs: { positionals: [containerName] },
|
|
6782
6786
|
start: { positionals: [containerName] },
|
|
6783
6787
|
stop: { positionals: [containerName] },
|