You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(heft-storybook-plugin): add --quiet opt-out and --no-open flag (#5681)
* allow omitting --quiet flag in heft-storybook-plugin without requiring --verbose
* add --no-open flag to heft-storybook-plugin to suppress browser launch in serve mode
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Taylor Lodge <ubermouse@users.noreply.github.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
"comment": "Add `quiet` option to control whether --quiet is passed to the Storybook CLI, and add `--no-open` flag to suppress automatic browser launch in serve mode",
Copy file name to clipboardExpand all lines: heft-plugins/heft-storybook-plugin/src/schemas/storybook.schema.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,11 @@
42
42
"title": "Specifies whether to disable Storybook telemetry.",
43
43
"description": "If true, sets the STORYBOOK_DISABLE_TELEMETRY=1 environment variable when invoking the Storybook subprocess, which disables Storybook's telemetry data collection. Defaults to false.",
44
44
"type": "boolean"
45
+
},
46
+
"quiet": {
47
+
"title": "Specifies whether to run storybook in quiet mode (--quiet).",
48
+
"description": "If this is true, then it will run storybook in quiet mode. Defaults to true.",
0 commit comments