bonzai-tools 1.0.105 → 1.0.106

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
@@ -163,9 +163,9 @@ async function main() {
163
163
 
164
164
  console.log('\nListener endpoints successfully deployed');
165
165
  console.log('All code stays on your machine\n');
166
- console.log('Relay server running on localhost:3001');
167
- console.log('Terminal WebSocket available at ws://localhost:3001/terminal');
168
- console.log('App available at http://localhost:3001\n');
166
+ console.log('Relay server running on localhost:6767');
167
+ console.log('Terminal WebSocket available at ws://localhost:6767/terminal');
168
+ console.log('App available at http://localhost:6767\n');
169
169
 
170
170
  // Start the server automatically
171
171
  const server = spawn('node', ['receiver.js'], {
@@ -178,7 +178,7 @@ async function main() {
178
178
  });
179
179
 
180
180
  // Open browser automatically
181
- exec('open http://localhost:3001/visualize?ref=btools');
181
+ exec('open http://localhost:6767/visualize?ref=btools');
182
182
 
183
183
  // Handle server process
184
184
  server.on('close', (serverCode) => {
@@ -7,7 +7,7 @@ const fs = require('fs');
7
7
  const path = require('path');
8
8
  const { ROOT } = require('./config');
9
9
 
10
- const port = 3001;
10
+ const port = 6767;
11
11
  const app = express();
12
12
  const server = http.createServer(app);
13
13
 
package/dist/index.js CHANGED
@@ -150,9 +150,9 @@ async function main() {
150
150
  }
151
151
  console.log("\nListener endpoints successfully deployed");
152
152
  console.log("All code stays on your machine\n");
153
- console.log("Relay server running on localhost:3001");
154
- console.log("Terminal WebSocket available at ws://localhost:3001/terminal");
155
- console.log("App available at http://localhost:3001\n");
153
+ console.log("Relay server running on localhost:6767");
154
+ console.log("Terminal WebSocket available at ws://localhost:6767/terminal");
155
+ console.log("App available at http://localhost:6767\n");
156
156
  const server = spawn("node", ["receiver.js"], {
157
157
  stdio: "inherit",
158
158
  cwd: bonzaiDir,
@@ -161,7 +161,7 @@ async function main() {
161
161
  BONZAI_REPO_DIR: currentDir
162
162
  }
163
163
  });
164
- exec("open http://localhost:3001/visualize?ref=btools");
164
+ exec("open http://localhost:6767/visualize?ref=btools");
165
165
  server.on("close", (serverCode) => {
166
166
  console.log(`
167
167
  Server stopped with code ${serverCode}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonzai-tools",
3
- "version": "1.0.105",
3
+ "version": "1.0.106",
4
4
  "description": "Visualization and file management tools for codebases",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",