@storybook/react-vite 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.
|
@@ -2913,19 +2913,19 @@ interface TestBuildFlags {
|
|
|
2913
2913
|
/**
|
|
2914
2914
|
* The package @storybook/blocks will be excluded from the bundle, even when imported in e.g. the preview.
|
|
2915
2915
|
*/
|
|
2916
|
-
|
|
2916
|
+
disableBlocks?: boolean;
|
|
2917
2917
|
/**
|
|
2918
|
-
* Disable
|
|
2918
|
+
* Disable specific addons
|
|
2919
2919
|
*/
|
|
2920
|
-
|
|
2920
|
+
disabledAddons?: string[];
|
|
2921
2921
|
/**
|
|
2922
2922
|
* Filter out .mdx stories entries
|
|
2923
2923
|
*/
|
|
2924
|
-
|
|
2924
|
+
disableMDXEntries?: boolean;
|
|
2925
2925
|
/**
|
|
2926
2926
|
* Override autodocs to be disabled
|
|
2927
2927
|
*/
|
|
2928
|
-
|
|
2928
|
+
disableAutoDocs?: boolean;
|
|
2929
2929
|
/**
|
|
2930
2930
|
* Override docgen to be disabled.
|
|
2931
2931
|
*/
|
|
@@ -2939,9 +2939,9 @@ interface TestBuildFlags {
|
|
|
2939
2939
|
*/
|
|
2940
2940
|
disableTreeShaking?: boolean;
|
|
2941
2941
|
/**
|
|
2942
|
-
*
|
|
2942
|
+
* Minify with ESBuild when using webpack.
|
|
2943
2943
|
*/
|
|
2944
|
-
|
|
2944
|
+
esbuildMinify?: boolean;
|
|
2945
2945
|
}
|
|
2946
2946
|
interface TestBuildConfig {
|
|
2947
2947
|
test?: TestBuildFlags;
|
package/dist/index.d.ts
CHANGED
package/dist/preset.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/react-vite",
|
|
3
|
-
"version": "7.6.0-alpha.
|
|
3
|
+
"version": "7.6.0-alpha.6",
|
|
4
4
|
"description": "Storybook for React and Vite: Develop React components in isolation with Hot Reloading.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@joshwooding/vite-plugin-react-docgen-typescript": "0.3.0",
|
|
51
51
|
"@rollup/pluginutils": "^5.0.2",
|
|
52
|
-
"@storybook/builder-vite": "7.6.0-alpha.
|
|
53
|
-
"@storybook/react": "7.6.0-alpha.
|
|
52
|
+
"@storybook/builder-vite": "7.6.0-alpha.6",
|
|
53
|
+
"@storybook/react": "7.6.0-alpha.6",
|
|
54
54
|
"@vitejs/plugin-react": "^3.0.1",
|
|
55
55
|
"magic-string": "^0.30.0",
|
|
56
56
|
"react-docgen": "^7.0.0"
|