@storybook/types 7.0.0-rc.7 → 7.0.0-rc.8
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/index.d.ts +4 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1970,7 +1970,6 @@ interface BuilderOptions {
|
|
|
1970
1970
|
cache?: FileSystemCache;
|
|
1971
1971
|
configDir: string;
|
|
1972
1972
|
docsMode?: boolean;
|
|
1973
|
-
env?: (envs: Record<string, string>) => Record<string, string>;
|
|
1974
1973
|
features?: StorybookConfig['features'];
|
|
1975
1974
|
versionCheck?: VersionCheck;
|
|
1976
1975
|
releaseNotesData?: ReleaseNotesData;
|
|
@@ -2133,6 +2132,10 @@ interface StorybookConfig {
|
|
|
2133
2132
|
* Modify or return babel config.
|
|
2134
2133
|
*/
|
|
2135
2134
|
babel?: (config: TransformOptions, options: Options) => TransformOptions | Promise<TransformOptions>;
|
|
2135
|
+
/**
|
|
2136
|
+
* Modify or return env config.
|
|
2137
|
+
*/
|
|
2138
|
+
env?: PresetValue<Record<string, string>>;
|
|
2136
2139
|
/**
|
|
2137
2140
|
* Modify or return babel config.
|
|
2138
2141
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/types",
|
|
3
|
-
"version": "7.0.0-rc.
|
|
3
|
+
"version": "7.0.0-rc.8",
|
|
4
4
|
"description": "Core Storybook TS Types",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@storybook/channels": "7.0.0-rc.
|
|
46
|
+
"@storybook/channels": "7.0.0-rc.8",
|
|
47
47
|
"@types/babel__core": "^7.0.0",
|
|
48
48
|
"@types/express": "^4.7.0",
|
|
49
49
|
"file-system-cache": "^2.0.0"
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"./src/index.ts"
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "42cc9d76db87614261e067f49b0123db30365233"
|
|
65
65
|
}
|