@storybook/react-webpack5 0.0.0-pr-24997-sha-ed9cb676 → 0.0.0-pr-25086-sha-b3010f16
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 +5 -0
- package/package.json +4 -4
package/dist/preset.d.ts
CHANGED
@@ -2825,6 +2825,7 @@ interface CLIOptions {
|
|
2825
2825
|
enableCrashReports?: boolean;
|
2826
2826
|
host?: string;
|
2827
2827
|
initialPath?: string;
|
2828
|
+
exactPort?: boolean;
|
2828
2829
|
/**
|
2829
2830
|
* @deprecated Use 'staticDirs' Storybook Configuration option instead
|
2830
2831
|
*/
|
@@ -3009,6 +3010,10 @@ interface StorybookConfigRaw {
|
|
3009
3010
|
* This will make sure that your story renders the same no matter if docgen is enabled or not.
|
3010
3011
|
*/
|
3011
3012
|
disallowImplicitActionsInRenderV8?: boolean;
|
3013
|
+
/**
|
3014
|
+
* Enable asynchronous component rendering in NextJS framework
|
3015
|
+
*/
|
3016
|
+
experimentalNextRSC?: boolean;
|
3012
3017
|
};
|
3013
3018
|
build?: TestBuildConfig;
|
3014
3019
|
stories: StoriesEntry[];
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/react-webpack5",
|
3
|
-
"version": "0.0.0-pr-
|
3
|
+
"version": "0.0.0-pr-25086-sha-b3010f16",
|
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": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@storybook/builder-webpack5": "0.0.0-pr-
|
51
|
-
"@storybook/preset-react-webpack": "0.0.0-pr-
|
52
|
-
"@storybook/react": "0.0.0-pr-
|
50
|
+
"@storybook/builder-webpack5": "0.0.0-pr-25086-sha-b3010f16",
|
51
|
+
"@storybook/preset-react-webpack": "0.0.0-pr-25086-sha-b3010f16",
|
52
|
+
"@storybook/react": "0.0.0-pr-25086-sha-b3010f16",
|
53
53
|
"@types/node": "^18.0.0"
|
54
54
|
},
|
55
55
|
"devDependencies": {
|