devtunnel-cli 3.0.29 → 3.0.31

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # DevTunnel 🚀
1
+ # DevTunnel-CLI 🚀
2
2
 
3
3
  **Share your local dev servers worldwide - Zero config tunnel for any framework**
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtunnel-cli",
3
- "version": "3.0.29",
3
+ "version": "3.0.31",
4
4
  "type": "module",
5
5
  "description": "DevTunnel - Share local dev servers worldwide. Zero configuration tunnel for any framework. Install via npm: npm install -g devtunnel-cli. Works with Vite, React, Next.js, Express, NestJS, Laravel (PHP), HTML, and more.",
6
6
  "main": "src/core/start.js",
package/src/core/start.js CHANGED
@@ -17,10 +17,10 @@ function getPackageVersion() {
17
17
  const pkgPath = join(PROJECT_ROOT, "package.json");
18
18
  if (existsSync(pkgPath)) {
19
19
  const pkg = JSON.parse(readFileSync(pkgPath, "utf8"));
20
- return pkg.version || "3.0.29";
20
+ return pkg.version || "3.0.31";
21
21
  }
22
22
  } catch (err) {}
23
- return "3.0.29";
23
+ return "3.0.31";
24
24
  }
25
25
 
26
26
  // Helper to run command
@@ -68,6 +68,6 @@ devtunnel-cli</code></pre>
68
68
  </ul>
69
69
 
70
70
  <hr>
71
- <p><small>Version 3.0.29 | Made with ❤️ for developers worldwide</small></p>
71
+ <p><small>Version 3.0.31 | Made with ❤️ for developers worldwide</small></p>
72
72
  </body>
73
73
  </html>