gencow 0.1.149 → 0.1.151
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/bin/gencow.mjs +3 -0
- package/dashboard/assets/{index-BFEs29Zt.js → index-sDmHXvHz.js} +16 -16
- package/dashboard/index.html +1 -1
- package/lib/dev-cloud-bundle.mjs +2 -0
- package/lib/dev-cloud-command.mjs +8 -10
- package/lib/dev-cloud-migrations.mjs +28 -0
- package/lib/domain-command.mjs +42 -10
- package/lib/platform-client.mjs +14 -7
- package/package.json +1 -1
- package/server/index.js +87 -81
- package/server/index.js.map +4 -4
package/bin/gencow.mjs
CHANGED
|
@@ -140,6 +140,7 @@ const {
|
|
|
140
140
|
runInServer,
|
|
141
141
|
});
|
|
142
142
|
const runDevCloudCommand = createDevCloudCommand({
|
|
143
|
+
buildEnvImpl: buildEnv,
|
|
143
144
|
requireCreds,
|
|
144
145
|
loadConfig,
|
|
145
146
|
existsSyncImpl: existsSync,
|
|
@@ -153,6 +154,8 @@ const runDevCloudCommand = createDevCloudCommand({
|
|
|
153
154
|
updateEnvLocalUrlImpl: updateEnvLocalUrl,
|
|
154
155
|
generateApiTsImpl: generateApiTs,
|
|
155
156
|
drizzleKitCmdImpl: _drizzleKitCmd,
|
|
157
|
+
isMonorepoImpl: isMonorepo,
|
|
158
|
+
runInServerImpl: runInServer,
|
|
156
159
|
logImpl: log,
|
|
157
160
|
infoImpl: info,
|
|
158
161
|
warnImpl: warn,
|