@theholocron/cli 3.22.1 → 3.24.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/dist/cli.mjs +7 -3
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -171,12 +171,12 @@ interface ChromaticProjectConfig {
|
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
173
|
* A single Storybook app in a deploy workflow config.
|
|
174
|
-
* `name` becomes the sandbox sub-path (`_site/sandbox/<name>/`)
|
|
175
|
-
* `path` is the working directory relative to the repo root.
|
|
174
|
+
* `name` becomes the sandbox sub-path (`_site/sandbox/<name>/`).
|
|
175
|
+
* `path` is the working directory relative to the repo root; defaults to `"."` (repo root) when omitted.
|
|
176
176
|
*/
|
|
177
177
|
interface StorybookDeployProject {
|
|
178
178
|
name: string;
|
|
179
|
-
path
|
|
179
|
+
path?: string;
|
|
180
180
|
}
|
|
181
181
|
/**
|
|
182
182
|
* Typed `with:` inputs for reusable workflows.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.0",
|
|
4
4
|
"description": "The Holocron CLI — a pluggable, capability-based orchestrator for spinning up and operating software projects.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/cli#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|