dorkos 0.34.0 → 0.34.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/dist/bin/cli.js +5 -5
- package/dist/client/assets/TopologyGraph-CMVTlVae.js +40 -0
- package/dist/client/assets/highlighted-body-OFNGDK62-Czg_Z-z7.js +1 -0
- package/dist/client/assets/index-0_WhDbXG.js +69 -0
- package/dist/client/assets/index-B0iJkOod.js +1077 -0
- package/dist/client/assets/index-HK1qmj_D.js +1 -0
- package/dist/server/index.js +1 -1
- package/dist/server/index.js.map +2 -2
- package/package.json +4 -4
package/dist/bin/cli.js
CHANGED
|
@@ -25930,12 +25930,12 @@ Examples:
|
|
|
25930
25930
|
process.exit(0);
|
|
25931
25931
|
}
|
|
25932
25932
|
if (values.version) {
|
|
25933
|
-
console.log("0.34.
|
|
25933
|
+
console.log("0.34.1");
|
|
25934
25934
|
process.exit(0);
|
|
25935
25935
|
}
|
|
25936
25936
|
if (values["post-install-check"]) {
|
|
25937
25937
|
const claudeFound = checkClaude();
|
|
25938
|
-
console.log(`dorkos ${"0.34.
|
|
25938
|
+
console.log(`dorkos ${"0.34.1"}`);
|
|
25939
25939
|
if (claudeFound) {
|
|
25940
25940
|
console.log("Installation verified.");
|
|
25941
25941
|
} else {
|
|
@@ -26079,7 +26079,7 @@ var ansiReset = "\x1B[0m";
|
|
|
26079
26079
|
console.log("");
|
|
26080
26080
|
console.log(`${purple}${logo}${ansiReset}`);
|
|
26081
26081
|
console.log("");
|
|
26082
|
-
console.log(` DorkOS v${"0.34.
|
|
26082
|
+
console.log(` DorkOS v${"0.34.1"}`);
|
|
26083
26083
|
console.log(` Local: ${link(localUrl, localUrl)}`);
|
|
26084
26084
|
var nets = networkInterfaces();
|
|
26085
26085
|
var networkUrl = null;
|
|
@@ -26140,9 +26140,9 @@ if (shouldOpenBrowser && process.stdin.isTTY) {
|
|
|
26140
26140
|
}
|
|
26141
26141
|
});
|
|
26142
26142
|
}
|
|
26143
|
-
checkForUpdate("0.34.
|
|
26143
|
+
checkForUpdate("0.34.1").then((latestVersion) => {
|
|
26144
26144
|
if (latestVersion) {
|
|
26145
|
-
const msg = `Update available: ${"0.34.
|
|
26145
|
+
const msg = `Update available: ${"0.34.1"} \u2192 ${latestVersion}`;
|
|
26146
26146
|
const cmd = "Run npm install -g dorkos@latest to update";
|
|
26147
26147
|
const width = Math.max(msg.length, cmd.length) + 6;
|
|
26148
26148
|
const pad = (s2) => `\u2502 ${s2}${" ".repeat(width - s2.length - 6)} \u2502`;
|