@getmonoceros/workbench 1.38.10 → 1.38.12
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 +5 -2
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -7290,7 +7290,8 @@ async function runContainerCycle(root, opts) {
|
|
|
7290
7290
|
);
|
|
7291
7291
|
const filters = [
|
|
7292
7292
|
`label=com.docker.compose.project=${projectName}`,
|
|
7293
|
-
`name=^${projectName}
|
|
7293
|
+
`name=^${projectName}-`,
|
|
7294
|
+
`name=^monoceros-${path18.basename(root)}$`
|
|
7294
7295
|
];
|
|
7295
7296
|
const { exitCode: rmExit } = await cleanupDockerObjects({
|
|
7296
7297
|
projectName,
|
|
@@ -9005,7 +9006,7 @@ var CLI_VERSION;
|
|
|
9005
9006
|
var init_version = __esm({
|
|
9006
9007
|
"src/version.ts"() {
|
|
9007
9008
|
"use strict";
|
|
9008
|
-
CLI_VERSION = true ? "1.38.
|
|
9009
|
+
CLI_VERSION = true ? "1.38.12" : "dev";
|
|
9009
9010
|
}
|
|
9010
9011
|
});
|
|
9011
9012
|
|
|
@@ -13927,6 +13928,7 @@ var init_main = __esm({
|
|
|
13927
13928
|
|
|
13928
13929
|
// src/bin.ts
|
|
13929
13930
|
import { runMain } from "citty";
|
|
13931
|
+
import { consola as consola42 } from "consola";
|
|
13930
13932
|
|
|
13931
13933
|
// src/devcontainer/docker-group-bootstrap.ts
|
|
13932
13934
|
import { spawnSync } from "child_process";
|
|
@@ -14212,6 +14214,7 @@ init_main();
|
|
|
14212
14214
|
init_notifier();
|
|
14213
14215
|
init_version();
|
|
14214
14216
|
bootstrapDockerGroup();
|
|
14217
|
+
consola42.options.formatOptions.date = false;
|
|
14215
14218
|
consumeInnerArgsFromProcessArgv();
|
|
14216
14219
|
async function entry() {
|
|
14217
14220
|
scheduleUpdateNotice({
|