@theholocron/cli 3.22.0 → 3.23.0
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/README.md +3 -3
- package/dist/cli.mjs +4 -1
- package/dist/cli.mjs.map +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -81,9 +81,9 @@ Additional `repo` fields recognised by `holocron setup`:
|
|
|
81
81
|
|
|
82
82
|
```ts
|
|
83
83
|
export default defineConfig({
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
84
|
+
agent: "claude", // "claude" | "codex" | "gemini"
|
|
85
|
+
skills: ["git-safety", "pr-workflow"], // skill names from @theholocron/skills
|
|
86
|
+
providers: { source: "github" },
|
|
87
87
|
});
|
|
88
88
|
```
|
|
89
89
|
|
package/dist/cli.mjs
CHANGED
|
@@ -3302,7 +3302,10 @@ async function runSetup(input) {
|
|
|
3302
3302
|
}
|
|
3303
3303
|
const storybookProjects = raw["storybook"];
|
|
3304
3304
|
if (Array.isArray(storybookProjects)) {
|
|
3305
|
-
for (const s of storybookProjects) if (typeof s.path === "string" && s.path !== "
|
|
3305
|
+
for (const s of storybookProjects) if (typeof s.path === "string" && s.path !== "") if (s.path === ".") {
|
|
3306
|
+
paths.push("src/**");
|
|
3307
|
+
paths.push(".storybook/**");
|
|
3308
|
+
} else paths.push(`${s.path}/**`);
|
|
3306
3309
|
}
|
|
3307
3310
|
return paths;
|
|
3308
3311
|
}
|