clawup 1.0.5 → 1.0.7

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