devtunnel-cli 3.1.0 → 3.1.1
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 +2 -2
- package/src/core/start.js +2 -2
- package/src/utils/pages/index.html +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devtunnel-cli",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "DevTunnel-CLI — fast, zero-config tool to share local servers for development, testing, demos, and webhook debugging. npm i -g devtunnel-cli.",
|
|
6
6
|
"main": "src/core/start.js",
|
|
@@ -87,4 +87,4 @@
|
|
|
87
87
|
"devDependencies": {
|
|
88
88
|
"@yao-pkg/pkg": "^5.15.0"
|
|
89
89
|
}
|
|
90
|
-
}
|
|
90
|
+
}
|
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.1.
|
|
20
|
+
return pkg.version || "3.1.1";
|
|
21
21
|
}
|
|
22
22
|
} catch (err) { }
|
|
23
|
-
return "3.1.
|
|
23
|
+
return "3.1.1";
|
|
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 <span id="pkg-version">3.1.
|
|
115
|
+
<p><small>Version <span id="pkg-version">3.1.1</span> | Made with ❤︎ for developers worldwide</small></p>
|
|
116
116
|
|
|
117
117
|
<script>
|
|
118
118
|
(async function () {
|