@storybook/react-webpack5 7.6.0-alpha.5 → 7.6.0-alpha.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/preset.d.ts +7 -7
- package/package.json +4 -4
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/react-webpack5",
|
3
|
-
"version": "7.6.0-alpha.
|
3
|
+
"version": "7.6.0-alpha.6",
|
4
4
|
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -47,9 +47,9 @@
|
|
47
47
|
"prep": "../../../scripts/prepare/bundle.ts"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@storybook/builder-webpack5": "7.6.0-alpha.
|
51
|
-
"@storybook/preset-react-webpack": "7.6.0-alpha.
|
52
|
-
"@storybook/react": "7.6.0-alpha.
|
50
|
+
"@storybook/builder-webpack5": "7.6.0-alpha.6",
|
51
|
+
"@storybook/preset-react-webpack": "7.6.0-alpha.6",
|
52
|
+
"@storybook/react": "7.6.0-alpha.6",
|
53
53
|
"@types/node": "^18.0.0"
|
54
54
|
},
|
55
55
|
"devDependencies": {
|