@storybook/html-webpack5 7.0.0-beta.29 → 7.0.0-beta.30
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 +3 -3
- package/package.json +6 -6
package/dist/preset.d.ts
CHANGED
@@ -883,10 +883,10 @@ interface CLIOptions {
|
|
883
883
|
}
|
884
884
|
interface BuilderOptions {
|
885
885
|
configType?: 'DEVELOPMENT' | 'PRODUCTION';
|
886
|
-
ignorePreview
|
887
|
-
cache
|
886
|
+
ignorePreview?: boolean;
|
887
|
+
cache?: FileSystemCache;
|
888
888
|
configDir: string;
|
889
|
-
docsMode
|
889
|
+
docsMode?: boolean;
|
890
890
|
features?: StorybookConfig['features'];
|
891
891
|
versionCheck?: VersionCheck;
|
892
892
|
releaseNotesData?: ReleaseNotesData;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/html-webpack5",
|
3
|
-
"version": "7.0.0-beta.
|
3
|
+
"version": "7.0.0-beta.30",
|
4
4
|
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -48,11 +48,11 @@
|
|
48
48
|
"prep": "../../../scripts/prepare/bundle.ts"
|
49
49
|
},
|
50
50
|
"dependencies": {
|
51
|
-
"@storybook/builder-webpack5": "7.0.0-beta.
|
52
|
-
"@storybook/core-common": "7.0.0-beta.
|
51
|
+
"@storybook/builder-webpack5": "7.0.0-beta.30",
|
52
|
+
"@storybook/core-common": "7.0.0-beta.30",
|
53
53
|
"@storybook/global": "^5.0.0",
|
54
|
-
"@storybook/html": "7.0.0-beta.
|
55
|
-
"@storybook/preset-html-webpack": "7.0.0-beta.
|
54
|
+
"@storybook/html": "7.0.0-beta.30",
|
55
|
+
"@storybook/preset-html-webpack": "7.0.0-beta.30",
|
56
56
|
"@types/node": "^16.0.0"
|
57
57
|
},
|
58
58
|
"devDependencies": {
|
@@ -76,5 +76,5 @@
|
|
76
76
|
],
|
77
77
|
"platform": "node"
|
78
78
|
},
|
79
|
-
"gitHead": "
|
79
|
+
"gitHead": "633f95bec79fb65524a7bcae867448b351920831"
|
80
80
|
}
|