@lmzhen/dsh-evolution-core 0.1.0-rc.34 → 0.1.0-rc.35

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.
Files changed (2) hide show
  1. package/lib/index.js +3 -2
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -2212,8 +2212,9 @@ var SkillLibrary = class {
2212
2212
  for (const name of names) await this.io.copy(skillDir(this.root, name), join(dest, name));
2213
2213
  const sidecars = [];
2214
2214
  for (const sidecar of [usageFile(this.root), suppressedFile(this.root)]) if (await this.io.exists(sidecar)) {
2215
- await this.io.copy(sidecar, join(dest, sidecar.split("/").pop() ?? sidecar));
2216
- sidecars.push(sidecar.split("/").pop() ?? sidecar);
2215
+ const name = basename(sidecar);
2216
+ await this.io.copy(sidecar, join(dest, name));
2217
+ sidecars.push(name);
2217
2218
  }
2218
2219
  await this.io.writeText(join(dest, "manifest.json"), JSON.stringify({
2219
2220
  reason,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-core",
3
3
  "description": "Shared stores, prompts, signals and lifecycle logic for the dsh-evolution plugin family (community build)",
4
- "version": "0.1.0-rc.34",
4
+ "version": "0.1.0-rc.35",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },