bonzai-tree 1.0.121 → 1.0.122

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/bconfig.js CHANGED
@@ -139,7 +139,8 @@ async function main() {
139
139
  return new Promise((resolve, reject) => {
140
140
  const npm = spawn('npm', ['install'], {
141
141
  stdio: 'inherit',
142
- cwd: bonzaiDir
142
+ cwd: bonzaiDir,
143
+ shell: true
143
144
  });
144
145
 
145
146
  npm.on('close', (code) => {
package/dist/index.js CHANGED
@@ -129,7 +129,8 @@ async function main() {
129
129
  return new Promise((resolve, reject) => {
130
130
  const npm = spawn("npm", ["install"], {
131
131
  stdio: "inherit",
132
- cwd: bonzaiDir
132
+ cwd: bonzaiDir,
133
+ shell: true
133
134
  });
134
135
  npm.on("close", (code) => {
135
136
  if (code === 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonzai-tree",
3
- "version": "1.0.121",
3
+ "version": "1.0.122",
4
4
  "description": "Visualization and file management tools for codebases",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",