clawup 1.0.6 → 1.0.8

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.js CHANGED
@@ -5307,6 +5307,12 @@ function ensureWorkspace() {
5307
5307
  ${msg}`
5308
5308
  };
5309
5309
  }
5310
+ const bundledCore = path2.join(bundled, "node_modules", "@clawup", "core");
5311
+ if (fs2.existsSync(bundledCore)) {
5312
+ const destCore = path2.join(WORKSPACE_DIR, "node_modules", "@clawup", "core");
5313
+ fs2.mkdirSync(destCore, { recursive: true });
5314
+ copyDirSync(bundledCore, destCore);
5315
+ }
5310
5316
  fs2.writeFileSync(versionFile, version, "utf-8");
5311
5317
  return { ok: true };
5312
5318
  }