@storybook/html-webpack5 7.6.0-alpha.5 → 7.6.0-alpha.6
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/preset.d.ts +7 -7
- package/package.json +5 -5
package/dist/preset.d.ts
CHANGED
@@ -2914,19 +2914,19 @@ interface TestBuildFlags {
|
|
2914
2914
|
/**
|
2915
2915
|
* The package @storybook/blocks will be excluded from the bundle, even when imported in e.g. the preview.
|
2916
2916
|
*/
|
2917
|
-
|
2917
|
+
disableBlocks?: boolean;
|
2918
2918
|
/**
|
2919
|
-
* Disable
|
2919
|
+
* Disable specific addons
|
2920
2920
|
*/
|
2921
|
-
|
2921
|
+
disabledAddons?: string[];
|
2922
2922
|
/**
|
2923
2923
|
* Filter out .mdx stories entries
|
2924
2924
|
*/
|
2925
|
-
|
2925
|
+
disableMDXEntries?: boolean;
|
2926
2926
|
/**
|
2927
2927
|
* Override autodocs to be disabled
|
2928
2928
|
*/
|
2929
|
-
|
2929
|
+
disableAutoDocs?: boolean;
|
2930
2930
|
/**
|
2931
2931
|
* Override docgen to be disabled.
|
2932
2932
|
*/
|
@@ -2940,9 +2940,9 @@ interface TestBuildFlags {
|
|
2940
2940
|
*/
|
2941
2941
|
disableTreeShaking?: boolean;
|
2942
2942
|
/**
|
2943
|
-
*
|
2943
|
+
* Minify with ESBuild when using webpack.
|
2944
2944
|
*/
|
2945
|
-
|
2945
|
+
esbuildMinify?: boolean;
|
2946
2946
|
}
|
2947
2947
|
interface TestBuildConfig {
|
2948
2948
|
test?: TestBuildFlags;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/html-webpack5",
|
3
|
-
"version": "7.6.0-alpha.
|
3
|
+
"version": "7.6.0-alpha.6",
|
4
4
|
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -47,11 +47,11 @@
|
|
47
47
|
"prep": "../../../scripts/prepare/bundle.ts"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@storybook/builder-webpack5": "7.6.0-alpha.
|
51
|
-
"@storybook/core-common": "7.6.0-alpha.
|
50
|
+
"@storybook/builder-webpack5": "7.6.0-alpha.6",
|
51
|
+
"@storybook/core-common": "7.6.0-alpha.6",
|
52
52
|
"@storybook/global": "^5.0.0",
|
53
|
-
"@storybook/html": "7.6.0-alpha.
|
54
|
-
"@storybook/preset-html-webpack": "7.6.0-alpha.
|
53
|
+
"@storybook/html": "7.6.0-alpha.6",
|
54
|
+
"@storybook/preset-html-webpack": "7.6.0-alpha.6",
|
55
55
|
"@types/node": "^18.0.0"
|
56
56
|
},
|
57
57
|
"devDependencies": {
|