dorkos 0.13.0 → 0.13.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/server/index.js +2 -2
- package/package.json +4 -3
package/dist/bin/cli.js
CHANGED
|
@@ -18897,12 +18897,12 @@ Examples:
|
|
|
18897
18897
|
process.exit(0);
|
|
18898
18898
|
}
|
|
18899
18899
|
if (values.version) {
|
|
18900
|
-
console.log("0.13.
|
|
18900
|
+
console.log("0.13.1");
|
|
18901
18901
|
process.exit(0);
|
|
18902
18902
|
}
|
|
18903
18903
|
if (values["post-install-check"]) {
|
|
18904
18904
|
checkClaude();
|
|
18905
|
-
console.log(`dorkos ${"0.13.
|
|
18905
|
+
console.log(`dorkos ${"0.13.1"}`);
|
|
18906
18906
|
console.log("Installation verified.");
|
|
18907
18907
|
process.exit(0);
|
|
18908
18908
|
}
|
|
@@ -19008,7 +19008,7 @@ if (fs4.existsSync(envPath)) {
|
|
|
19008
19008
|
await import("../server/index.js");
|
|
19009
19009
|
var port = process.env.DORKOS_PORT || String(DEFAULT_PORT);
|
|
19010
19010
|
console.log("");
|
|
19011
|
-
console.log(` DorkOS v${"0.13.
|
|
19011
|
+
console.log(` DorkOS v${"0.13.1"}`);
|
|
19012
19012
|
console.log(` Local: http://localhost:${port}`);
|
|
19013
19013
|
var nets = networkInterfaces();
|
|
19014
19014
|
var networkUrl = null;
|
|
@@ -19064,9 +19064,9 @@ console.log("");
|
|
|
19064
19064
|
}
|
|
19065
19065
|
});
|
|
19066
19066
|
}
|
|
19067
|
-
checkForUpdate("0.13.
|
|
19067
|
+
checkForUpdate("0.13.1").then((latestVersion) => {
|
|
19068
19068
|
if (latestVersion) {
|
|
19069
|
-
const msg = `Update available: ${"0.13.
|
|
19069
|
+
const msg = `Update available: ${"0.13.1"} \u2192 ${latestVersion}`;
|
|
19070
19070
|
const cmd = "Run npm install -g dorkos@latest to update";
|
|
19071
19071
|
const width = Math.max(msg.length, cmd.length) + 6;
|
|
19072
19072
|
const pad = (s2) => `\u2502 ${s2}${" ".repeat(width - s2.length - 6)} \u2502`;
|
package/dist/server/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createRequire } from 'module'; import { fileURLToPath as __fup } from 'url'; const require =
|
|
1
|
+
import { createRequire as __cjsRequire } from 'module'; import { fileURLToPath as __fup } from 'url'; const require = __cjsRequire(import.meta.url); const __filename = __fup(import.meta.url);
|
|
2
2
|
var __create = Object.create;
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -70918,7 +70918,7 @@ var SERVER_VERSION = resolveVersion();
|
|
|
70918
70918
|
var IS_DEV_BUILD = checkDevBuild(SERVER_VERSION);
|
|
70919
70919
|
function resolveVersion() {
|
|
70920
70920
|
if (env.DORKOS_VERSION_OVERRIDE) return env.DORKOS_VERSION_OVERRIDE;
|
|
70921
|
-
if (true) return "0.13.
|
|
70921
|
+
if (true) return "0.13.1";
|
|
70922
70922
|
const pkgPath = path4.join(path4.dirname(fileURLToPath2(import.meta.url)), "../../package.json");
|
|
70923
70923
|
return JSON.parse(readFileSync(pkgPath, "utf-8")).version;
|
|
70924
70924
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dorkos",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "The operating system for autonomous AI agents — scheduling, messaging, and agent coordination so one person can ship like a team.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Dorian Collier",
|
|
@@ -64,8 +64,9 @@
|
|
|
64
64
|
"tsx": "^4.19.0",
|
|
65
65
|
"typescript": "^5.7.0",
|
|
66
66
|
"vitest": "^4.1.0",
|
|
67
|
-
"@dorkos/
|
|
68
|
-
"@dorkos/
|
|
67
|
+
"@dorkos/eslint-config": "0.0.0",
|
|
68
|
+
"@dorkos/shared": "0.0.0",
|
|
69
|
+
"@dorkos/typescript-config": "0.0.0"
|
|
69
70
|
},
|
|
70
71
|
"scripts": {
|
|
71
72
|
"build": "tsx scripts/build.ts",
|