@adunne09/waldo 0.0.0-dev-202603111655 → 0.0.0-dev-202603111850
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/bin/waldo +3 -1
- package/package.json +6 -6
package/bin/waldo
CHANGED
|
@@ -337,8 +337,10 @@ async function maybeAutoUpdate() {
|
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
runGlobalUpgrade(method, latest);
|
|
340
|
+
console.error(`Updated Waldo from ${current} to ${latest}.`);
|
|
340
341
|
} catch {
|
|
341
|
-
|
|
342
|
+
const current = resolveCurrentVersion();
|
|
343
|
+
console.error(`Waldo update failed; continuing with ${current}.`);
|
|
342
344
|
}
|
|
343
345
|
}
|
|
344
346
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adunne09/waldo",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-202603111850",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"waldo": "./bin/waldo"
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@adunne09/waldo-darwin-arm64": "0.0.0-dev-
|
|
13
|
-
"@adunne09/waldo-darwin-x64": "0.0.0-dev-
|
|
14
|
-
"@adunne09/waldo-linux-arm64": "0.0.0-dev-
|
|
15
|
-
"@adunne09/waldo-linux-x64": "0.0.0-dev-
|
|
16
|
-
"@adunne09/waldo-windows-x64": "0.0.0-dev-
|
|
12
|
+
"@adunne09/waldo-darwin-arm64": "0.0.0-dev-202603111850",
|
|
13
|
+
"@adunne09/waldo-darwin-x64": "0.0.0-dev-202603111850",
|
|
14
|
+
"@adunne09/waldo-linux-arm64": "0.0.0-dev-202603111850",
|
|
15
|
+
"@adunne09/waldo-linux-x64": "0.0.0-dev-202603111850",
|
|
16
|
+
"@adunne09/waldo-windows-x64": "0.0.0-dev-202603111850"
|
|
17
17
|
}
|
|
18
18
|
}
|