devtunnel-cli 3.0.34 → 3.0.35

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtunnel-cli",
3
- "version": "3.0.34",
3
+ "version": "3.0.35",
4
4
  "type": "module",
5
5
  "description": "DevTunnel-CLI (DevTunnel, devtunnel, dev-tunnel) - Share local dev servers worldwide. Zero config, supports multiple ports. npm install -g devtunnel-cli. Works with Vite, React, Laravel, HTML, PHP/XAMPP.",
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.34";
20
+ return pkg.version || "3.0.35";
21
21
  }
22
22
  } catch (err) {}
23
- return "3.0.34";
23
+ return "3.0.35";
24
24
  }
25
25
 
26
26
  // Helper to run command
@@ -112,7 +112,7 @@ devtunnel-cli</code></pre>
112
112
  </ul>
113
113
 
114
114
  <hr>
115
- <p><small>Version 3.0.34 | Made with ❤︎ for developers worldwide</small></p>
115
+ <p><small>Version 3.0.35 | Made with ❤︎ for developers worldwide</small></p>
116
116
  </body>
117
117
 
118
118
  </html>