@getmonoceros/workbench 1.36.2 → 1.36.3
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 +13 -2
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -7065,7 +7065,18 @@ async function runComposeAction(buildSubArgs, opts) {
|
|
|
7065
7065
|
const { composeFile, projectName } = resolveCompose(opts.root);
|
|
7066
7066
|
const spawnFn = opts.spawn ?? spawnDockerCompose;
|
|
7067
7067
|
const subArgs = buildSubArgs(opts.service);
|
|
7068
|
-
return spawnFn(
|
|
7068
|
+
return spawnFn(
|
|
7069
|
+
[
|
|
7070
|
+
"-f",
|
|
7071
|
+
composeFile,
|
|
7072
|
+
"-p",
|
|
7073
|
+
projectName,
|
|
7074
|
+
"--profile",
|
|
7075
|
+
DEFERRED_SERVICE_PROFILE,
|
|
7076
|
+
...subArgs
|
|
7077
|
+
],
|
|
7078
|
+
opts.root
|
|
7079
|
+
);
|
|
7069
7080
|
}
|
|
7070
7081
|
async function startDeferredServices(opts) {
|
|
7071
7082
|
if (opts.services.length === 0) return 0;
|
|
@@ -8799,7 +8810,7 @@ var CLI_VERSION;
|
|
|
8799
8810
|
var init_version = __esm({
|
|
8800
8811
|
"src/version.ts"() {
|
|
8801
8812
|
"use strict";
|
|
8802
|
-
CLI_VERSION = true ? "1.36.
|
|
8813
|
+
CLI_VERSION = true ? "1.36.3" : "dev";
|
|
8803
8814
|
}
|
|
8804
8815
|
});
|
|
8805
8816
|
|