forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheft-plugin.json
More file actions
30 lines (28 loc) · 913 Bytes
/
heft-plugin.json
File metadata and controls
30 lines (28 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"$schema": "https://developer.microsoft.com/json-schemas/heft/v0/heft-plugin.schema.json",
"taskPlugins": [
{
"pluginName": "storybook-plugin",
"entryPoint": "./lib-commonjs/StorybookPlugin",
"optionsSchema": "./lib-commonjs/schemas/storybook.schema.json",
"parameterScope": "storybook",
"parameters": [
{
"longName": "--storybook",
"description": "(EXPERIMENTAL) Used by the \"@rushstack/heft-storybook-plugin\" package to launch Storybook.",
"parameterKind": "flag"
},
{
"longName": "--storybook-test",
"description": "Executes a stripped down build-storybook for testing purposes.",
"parameterKind": "flag"
},
{
"longName": "--docs",
"description": "Execute storybook in docs mode.",
"parameterKind": "flag"
}
]
}
]
}