@majordigital/create-acorn 1.5.5 → 1.5.6

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.
@@ -70,7 +70,7 @@ function parseFlag(name) {
70
70
 
71
71
  function runCommand(cmd, args, options = {}) {
72
72
  return new Promise((resolve, reject) => {
73
- const child = spawn(cmd, args, { stdio: 'inherit', shell: true, ...options });
73
+ const child = spawn(cmd, args, { stdio: 'inherit', ...options });
74
74
  child.on('close', (code) => {
75
75
  if (code === 0) resolve();
76
76
  else reject(new Error(`${cmd} ${args.join(' ')} exited with code ${code}`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@majordigital/create-acorn",
3
- "version": "1.5.5",
3
+ "version": "1.5.6",
4
4
  "description": "Interactive scaffold for Acorn with Storyblok/Prismic/DatoCMS, TypeScript, and Tailwind.",
5
5
  "bin": {
6
6
  "create-acorn": "bin/create-acorn.mjs",