@geekmidas/cli 0.19.0 → 0.20.0
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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/dev/index.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -26,7 +26,7 @@ import prompts from "prompts";
|
|
|
26
26
|
|
|
27
27
|
//#region package.json
|
|
28
28
|
var name = "@geekmidas/cli";
|
|
29
|
-
var version = "0.
|
|
29
|
+
var version = "0.20.0";
|
|
30
30
|
var description = "CLI tools for building Lambda handlers, server applications, and generating OpenAPI specs";
|
|
31
31
|
var private$1 = false;
|
|
32
32
|
var type = "module";
|
|
@@ -1244,7 +1244,7 @@ async function startWorkspaceServices(workspace) {
|
|
|
1244
1244
|
logger$8.warn("⚠️ No docker-compose.yml found. Services will not be started.");
|
|
1245
1245
|
return;
|
|
1246
1246
|
}
|
|
1247
|
-
execSync(`docker
|
|
1247
|
+
execSync(`docker compose up -d ${servicesToStart.join(" ")}`, {
|
|
1248
1248
|
cwd: workspace.root,
|
|
1249
1249
|
stdio: "inherit"
|
|
1250
1250
|
});
|