hot-updater 0.12.6 → 0.12.7

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 CHANGED
@@ -78770,7 +78770,8 @@ Instead, \`yield\` should either be called with a value, or not be called at all
78770
78770
  "create",
78771
78771
  orgName
78772
78772
  ], {
78773
- stdio: "inherit"
78773
+ stdio: "inherit",
78774
+ shell: true
78774
78775
  });
78775
78776
  } catch (err) {
78776
78777
  if (err instanceof ExecaError && err.stderr) prompts_namespaceObject.log.error(err.stderr);
@@ -78821,7 +78822,8 @@ Instead, \`yield\` should either be called with a value, or not be called at all
78821
78822
  "projects",
78822
78823
  "create"
78823
78824
  ], {
78824
- stdio: "inherit"
78825
+ stdio: "inherit",
78826
+ shell: true
78825
78827
  });
78826
78828
  } catch (err) {
78827
78829
  if (err instanceof ExecaError) console.error(err.stderr);
@@ -79666,7 +79668,8 @@ export default HotUpdater.wrap({
79666
79668
  "--profile",
79667
79669
  profile
79668
79670
  ], {
79669
- stdio: "inherit"
79671
+ stdio: "inherit",
79672
+ shell: true
79670
79673
  });
79671
79674
  credentials = await SDK.CredentialsProvider.fromSSO({
79672
79675
  profile
@@ -80153,7 +80156,8 @@ export default HotUpdater.wrap({
80153
80156
  "push"
80154
80157
  ], {
80155
80158
  cwd: supabasePath,
80156
- stdio: "inherit"
80159
+ stdio: "inherit",
80160
+ shell: true
80157
80161
  });
80158
80162
  prompts_namespaceObject.log.success("DB pushed ✔");
80159
80163
  return dbPush.stdout;
package/dist/index.js CHANGED
@@ -78428,7 +78428,8 @@ const selectOrCreateOrganization = async ()=>{
78428
78428
  "create",
78429
78429
  orgName
78430
78430
  ], {
78431
- stdio: "inherit"
78431
+ stdio: "inherit",
78432
+ shell: true
78432
78433
  });
78433
78434
  } catch (err) {
78434
78435
  if (err instanceof ExecaError && err.stderr) __WEBPACK_EXTERNAL_MODULE__clack_prompts_3cae1695__.log.error(err.stderr);
@@ -78479,7 +78480,8 @@ const selectProject = async ()=>{
78479
78480
  "projects",
78480
78481
  "create"
78481
78482
  ], {
78482
- stdio: "inherit"
78483
+ stdio: "inherit",
78484
+ shell: true
78483
78485
  });
78484
78486
  } catch (err) {
78485
78487
  if (err instanceof ExecaError) console.error(err.stderr);
@@ -79324,7 +79326,8 @@ const initAwsS3LambdaEdge = async ()=>{
79324
79326
  "--profile",
79325
79327
  profile
79326
79328
  ], {
79327
- stdio: "inherit"
79329
+ stdio: "inherit",
79330
+ shell: true
79328
79331
  });
79329
79332
  credentials = await SDK.CredentialsProvider.fromSSO({
79330
79333
  profile
@@ -79811,7 +79814,8 @@ const pushDB = async (supabasePath)=>{
79811
79814
  "push"
79812
79815
  ], {
79813
79816
  cwd: supabasePath,
79814
- stdio: "inherit"
79817
+ stdio: "inherit",
79818
+ shell: true
79815
79819
  });
79816
79820
  __WEBPACK_EXTERNAL_MODULE__clack_prompts_3cae1695__.log.success("DB pushed ✔");
79817
79821
  return dbPush.stdout;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hot-updater",
3
3
  "type": "module",
4
- "version": "0.12.6",
4
+ "version": "0.12.7",
5
5
  "bin": {
6
6
  "hot-updater": "./dist/index.js"
7
7
  },
@@ -49,9 +49,9 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@clack/prompts": "^0.9.0",
52
- "@hot-updater/console": "0.12.6",
53
- "@hot-updater/core": "0.12.6",
54
- "@hot-updater/plugin-core": "0.12.6",
52
+ "@hot-updater/console": "0.12.7",
53
+ "@hot-updater/core": "0.12.7",
54
+ "@hot-updater/plugin-core": "0.12.7",
55
55
  "commander": "^11.1.0",
56
56
  "cosmiconfig": "^9.0.0",
57
57
  "cosmiconfig-typescript-loader": "^5.0.0"