Skip to content

Commit

Permalink
fix(storybook): add all Storybook CLI options to schema (#17358)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed Jun 7, 2023
1 parent e693642 commit 3cb7b8f
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/generated/packages/storybook/executors/build.json
Expand Up @@ -101,6 +101,19 @@
"@storybook/svelte"
],
"x-deprecated": "Upgrade to Storybook 7."
},
"webpackStatsJson": {
"type": ["boolean", "string"],
"description": "Write Webpack Stats JSON to disk.",
"default": false
},
"debugWebpack": {
"type": "boolean",
"description": "Display final webpack configurations for debugging purposes."
},
"disableTelemetry": {
"type": "boolean",
"description": "Disables Storybook's telemetry."
}
},
"definitions": {
Expand Down
33 changes: 33 additions & 0 deletions docs/generated/packages/storybook/executors/storybook.json
Expand Up @@ -79,6 +79,39 @@
"@storybook/svelte"
],
"x-deprecated": "Upgrade to Storybook 7."
},
"webpackStatsJson": {
"type": ["boolean", "string"],
"description": "Write Webpack Stats JSON to disk.",
"default": false
},
"sslCa": {
"type": "string",
"description": "Provide an SSL certificate authority. (Optional with --https, required if using a self-signed certificate)."
},
"sslCert": {
"type": "string",
"description": "Provide an SSL certificate. (Required with --https)."
},
"sslKey": {
"type": "string",
"description": "Provide an SSL key. (Required with --https)."
},
"smokeTest": {
"type": "boolean",
"description": "Exit after successful start."
},
"noOpen": {
"type": "boolean",
"description": "Do not open Storybook automatically in the browser."
},
"debugWebpack": {
"type": "boolean",
"description": "Display final webpack configurations for debugging purposes."
},
"disableTelemetry": {
"type": "boolean",
"description": "Disables Storybook's telemetry."
}
},
"additionalProperties": true,
Expand Down
13 changes: 13 additions & 0 deletions packages/storybook/src/executors/build-storybook/schema.json
Expand Up @@ -81,6 +81,19 @@
"@storybook/svelte"
],
"x-deprecated": "Upgrade to Storybook 7."
},
"webpackStatsJson": {
"type": ["boolean", "string"],
"description": "Write Webpack Stats JSON to disk.",
"default": false
},
"debugWebpack": {
"type": "boolean",
"description": "Display final webpack configurations for debugging purposes."
},
"disableTelemetry": {
"type": "boolean",
"description": "Disables Storybook's telemetry."
}
},
"definitions": {
Expand Down
33 changes: 33 additions & 0 deletions packages/storybook/src/executors/storybook/schema.json
Expand Up @@ -84,6 +84,39 @@
"@storybook/svelte"
],
"x-deprecated": "Upgrade to Storybook 7."
},
"webpackStatsJson": {
"type": ["boolean", "string"],
"description": "Write Webpack Stats JSON to disk.",
"default": false
},
"sslCa": {
"type": "string",
"description": "Provide an SSL certificate authority. (Optional with --https, required if using a self-signed certificate)."
},
"sslCert": {
"type": "string",
"description": "Provide an SSL certificate. (Required with --https)."
},
"sslKey": {
"type": "string",
"description": "Provide an SSL key. (Required with --https)."
},
"smokeTest": {
"type": "boolean",
"description": "Exit after successful start."
},
"noOpen": {
"type": "boolean",
"description": "Do not open Storybook automatically in the browser."
},
"debugWebpack": {
"type": "boolean",
"description": "Display final webpack configurations for debugging purposes."
},
"disableTelemetry": {
"type": "boolean",
"description": "Disables Storybook's telemetry."
}
},
"additionalProperties": true,
Expand Down

1 comment on commit 3cb7b8f

@vercel
Copy link

@vercel vercel bot commented on 3cb7b8f Jun 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-git-master-nrwl.vercel.app
nx-dev-nrwl.vercel.app
nx.dev
nx-five.vercel.app

Please sign in to comment.