devbonzai 1.6.6 → 1.6.8

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.
Files changed (2) hide show
  1. package/cli.js +4 -3
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -127,7 +127,8 @@ function getIgnorePatterns() {
127
127
  /^node_modules(\\/.*)?$/,
128
128
  /^\\.git(\\/.*)?$/,
129
129
  /^\\.DS_Store$/,
130
- /^\\.env$/
130
+ /^\\.env$/,
131
+ /^bonzai(\\/.*)?$/
131
132
  ];
132
133
  }
133
134
 
@@ -762,7 +763,7 @@ async function main() {
762
763
  console.log('');
763
764
  console.log('Relay server running on localhost:3001');
764
765
  console.log('');
765
- console.log('Diagram avaialble at https://www.codemaps.me/ ');
766
+ console.log('Diagram avaialble at https://bonzai.dev/ ');
766
767
  console.log('');
767
768
 
768
769
  // Start the server automatically
@@ -772,7 +773,7 @@ async function main() {
772
773
  });
773
774
 
774
775
  // Open browser automatically
775
- exec('open https://www.codemaps.me/');
776
+ exec('open https://bonzai.dev/');
776
777
 
777
778
  // Handle server process
778
779
  server.on('close', (serverCode) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devbonzai",
3
- "version": "1.6.6",
3
+ "version": "1.6.8",
4
4
  "description": "Quickly set up a local file server in any repository for browser-based file access",
5
5
  "main": "cli.js",
6
6
  "bin": {