@storybook/telemetry 7.0.0-beta.55 → 7.0.0-beta.56
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 +5 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -886,6 +886,7 @@ interface BuilderOptions {
|
|
|
886
886
|
cache?: FileSystemCache;
|
|
887
887
|
configDir: string;
|
|
888
888
|
docsMode?: boolean;
|
|
889
|
+
env?: (envs: Record<string, string>) => Record<string, string>;
|
|
889
890
|
features?: StorybookConfig['features'];
|
|
890
891
|
versionCheck?: VersionCheck;
|
|
891
892
|
releaseNotesData?: ReleaseNotesData;
|
|
@@ -995,6 +996,10 @@ interface StorybookConfig {
|
|
|
995
996
|
* Use legacy MDX1, to help smooth migration to 7.0
|
|
996
997
|
*/
|
|
997
998
|
legacyMdx1?: boolean;
|
|
999
|
+
/**
|
|
1000
|
+
* Apply decorators from preview.js before decorators from addons or frameworks
|
|
1001
|
+
*/
|
|
1002
|
+
legacyDecoratorFileOrder?: boolean;
|
|
998
1003
|
};
|
|
999
1004
|
/**
|
|
1000
1005
|
* Tells Storybook where to find stories.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/telemetry",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.56",
|
|
4
4
|
"description": "Telemetry logging for crash reports and usage statistics",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@storybook/client-logger": "7.0.0-beta.
|
|
47
|
-
"@storybook/core-common": "7.0.0-beta.
|
|
46
|
+
"@storybook/client-logger": "7.0.0-beta.56",
|
|
47
|
+
"@storybook/core-common": "7.0.0-beta.56",
|
|
48
48
|
"chalk": "^4.1.0",
|
|
49
49
|
"detect-package-manager": "^2.0.1",
|
|
50
50
|
"fetch-retry": "^5.0.2",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
],
|
|
66
66
|
"platform": "node"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "26815b0ea07f3800cc514cccd242c8ab1f428b8c"
|
|
69
69
|
}
|