@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geekmidas/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "CLI tools for building Lambda handlers, server applications, and generating OpenAPI specs",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
"@geekmidas/testkit": "0.6.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"@geekmidas/constructs": "~0.6.0",
|
|
62
|
-
"@geekmidas/logger": "~0.4.0",
|
|
63
61
|
"@geekmidas/envkit": "~0.4.0",
|
|
64
|
-
"@geekmidas/
|
|
65
|
-
"@geekmidas/
|
|
62
|
+
"@geekmidas/logger": "~0.4.0",
|
|
63
|
+
"@geekmidas/constructs": "~0.6.0",
|
|
64
|
+
"@geekmidas/schema": "~0.1.0",
|
|
65
|
+
"@geekmidas/telescope": "~0.4.0"
|
|
66
66
|
},
|
|
67
67
|
"peerDependenciesMeta": {
|
|
68
68
|
"@geekmidas/telescope": {
|
package/src/dev/index.ts
CHANGED
|
@@ -760,7 +760,7 @@ export async function startWorkspaceServices(
|
|
|
760
760
|
}
|
|
761
761
|
|
|
762
762
|
// Start services with docker-compose
|
|
763
|
-
execSync(`docker
|
|
763
|
+
execSync(`docker compose up -d ${servicesToStart.join(' ')}`, {
|
|
764
764
|
cwd: workspace.root,
|
|
765
765
|
stdio: 'inherit',
|
|
766
766
|
});
|