@ciderjs/gasbombe 0.2.2 → 0.2.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/cli.cjs CHANGED
@@ -11,7 +11,7 @@ require('consola');
11
11
  require('ejs');
12
12
  require('glob');
13
13
 
14
- const version = "0.2.2";
14
+ const version = "0.2.3";
15
15
 
16
16
  async function main() {
17
17
  const program = new commander.Command();
package/dist/cli.mjs CHANGED
@@ -9,7 +9,7 @@ import 'consola';
9
9
  import 'ejs';
10
10
  import 'glob';
11
11
 
12
- const version = "0.2.2";
12
+ const version = "0.2.3";
13
13
 
14
14
  async function main() {
15
15
  const program = new Command();
package/dist/index.cjs CHANGED
@@ -18,7 +18,8 @@ async function runCommand(command, args, cwd, capture = false) {
18
18
  return new Promise((resolve, reject) => {
19
19
  const child = node_child_process.spawn(command, args, {
20
20
  cwd,
21
- stdio: capture ? "pipe" : "inherit"
21
+ stdio: capture ? "pipe" : "inherit",
22
+ shell: true
22
23
  });
23
24
  let stdout = "";
24
25
  let stderr = "";
package/dist/index.mjs CHANGED
@@ -19,7 +19,8 @@ async function runCommand(command, args, cwd, capture = false) {
19
19
  return new Promise((resolve, reject) => {
20
20
  const child = spawn(command, args, {
21
21
  cwd,
22
- stdio: capture ? "pipe" : "inherit"
22
+ stdio: capture ? "pipe" : "inherit",
23
+ shell: true
23
24
  });
24
25
  let stdout = "";
25
26
  let stderr = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ciderjs/gasbombe",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "A TypeScript Project Generator for GoogleAppsScript, available as CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",