bonzai-burn 1.0.18 → 1.0.19
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/package.json
CHANGED
package/src/bgraph.js
CHANGED
|
@@ -149,7 +149,11 @@ async function main() {
|
|
|
149
149
|
// Start the server automatically
|
|
150
150
|
const server = spawn('node', ['receiver.js'], {
|
|
151
151
|
stdio: 'inherit',
|
|
152
|
-
cwd: bonzaiDir
|
|
152
|
+
cwd: bonzaiDir,
|
|
153
|
+
env: {
|
|
154
|
+
...process.env,
|
|
155
|
+
BONZAI_REPO_DIR: currentDir
|
|
156
|
+
}
|
|
153
157
|
});
|
|
154
158
|
|
|
155
159
|
// Open browser automatically
|