@kody-ade/kody-engine 0.4.265 → 0.4.266
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/kody.js +2 -2
- package/package.json +1 -1
package/dist/bin/kody.js
CHANGED
|
@@ -15,7 +15,7 @@ var init_package = __esm({
|
|
|
15
15
|
"package.json"() {
|
|
16
16
|
package_default = {
|
|
17
17
|
name: "@kody-ade/kody-engine",
|
|
18
|
-
version: "0.4.
|
|
18
|
+
version: "0.4.266",
|
|
19
19
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
20
20
|
license: "MIT",
|
|
21
21
|
type: "module",
|
|
@@ -16606,12 +16606,12 @@ function writeLocalFile(cwd, relativePath, content) {
|
|
|
16606
16606
|
function hydrateDirectory(config, cwd, stateDir, localDir) {
|
|
16607
16607
|
const entries = listStateDirectory(config, cwd, stateDir);
|
|
16608
16608
|
if (entries.length === 0) return;
|
|
16609
|
-
fs42.rmSync(path40.join(cwd, localDir), { recursive: true, force: true });
|
|
16610
16609
|
for (const entry of entries) {
|
|
16611
16610
|
if (!entry.name || !entry.type) continue;
|
|
16612
16611
|
const childState = path40.posix.join(stateDir, entry.name);
|
|
16613
16612
|
const childLocal = path40.join(localDir, entry.name);
|
|
16614
16613
|
if (entry.type === "dir") {
|
|
16614
|
+
fs42.rmSync(path40.join(cwd, childLocal), { recursive: true, force: true });
|
|
16615
16615
|
hydrateDirectory(config, cwd, childState, childLocal);
|
|
16616
16616
|
} else if (entry.type === "file") {
|
|
16617
16617
|
const file = readStateText(config, cwd, childState);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.266",
|
|
4
4
|
"description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|