@vibelet/cli 1.0.14 → 1.0.15
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/index.cjs +41 -41
- package/dist/runtime-version.cjs +1 -1
- package/dist/vibelet.mjs +1 -1
- package/package.json +1 -1
package/dist/runtime-version.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var s=require("node:fs"),n=require("node:path"),c="@vibelet/cli";function a(e){try{let r=JSON.parse((0,s.readFileSync)(e,"utf8"));if(r.name===c&&typeof r.version=="string"&&r.version.length>0)return r.version}catch{}return null}function p(){return"1.0.
|
|
1
|
+
var s=require("node:fs"),n=require("node:path"),c="@vibelet/cli";function a(e){try{let r=JSON.parse((0,s.readFileSync)(e,"utf8"));if(r.name===c&&typeof r.version=="string"&&r.version.length>0)return r.version}catch{}return null}function p(){return"1.0.15"}var i=p();process.stdout.write(`${i}
|
|
2
2
|
`);
|
package/dist/vibelet.mjs
CHANGED
|
@@ -7226,7 +7226,7 @@ async function probeHealth(timeoutMs = 0) {
|
|
|
7226
7226
|
do {
|
|
7227
7227
|
try {
|
|
7228
7228
|
const response = await fetch(`http://127.0.0.1:${port}/health`, {
|
|
7229
|
-
signal: AbortSignal.timeout(
|
|
7229
|
+
signal: AbortSignal.timeout(3000),
|
|
7230
7230
|
});
|
|
7231
7231
|
if (response.ok) {
|
|
7232
7232
|
return await response.json();
|