@storybook/react-webpack5 7.0.0-beta.13 → 7.0.0-beta.15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/preset.d.ts +6 -5
  2. package/package.json +8 -11
package/dist/preset.d.ts CHANGED
@@ -935,18 +935,19 @@ type CoreCommon_StorybookRefs = Record<string, {
935
935
  }>;
936
936
  type DocsOptions = {
937
937
  /**
938
- * Should we generate docs entries at all under any circumstances? (i.e. can they be rendered)
938
+ * Should we disable generate docs entries at all under any circumstances? (i.e. can they be rendered)
939
939
  */
940
- enabled?: boolean;
940
+ disable?: boolean;
941
941
  /**
942
942
  * What should we call the generated docs entries?
943
943
  */
944
944
  defaultName?: string;
945
945
  /**
946
- * Should we generate a docs entry per CSF file with the `docsPage` tag?
947
- * Set to 'automatic' to generate an entry irrespective of tag.
946
+ * Should we generate a docs entry per CSF file?
947
+ * Set to 'tag' (the default) to generate an entry for every CSF file with the
948
+ * 'autodocs' tag.
948
949
  */
949
- docsPage?: boolean | 'automatic';
950
+ autodocs?: boolean | 'tag';
950
951
  /**
951
952
  * Only show doc entries in the side bar (usually set with the `--docs` CLI flag)
952
953
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-webpack5",
3
- "version": "7.0.0-beta.13",
3
+ "version": "7.0.0-beta.15",
4
4
  "description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -21,6 +21,7 @@
21
21
  "license": "MIT",
22
22
  "exports": {
23
23
  ".": {
24
+ "node": "./dist/index.js",
24
25
  "require": "./dist/index.js",
25
26
  "import": "./dist/index.mjs",
26
27
  "types": "./dist/index.d.ts"
@@ -30,18 +31,14 @@
30
31
  "import": "./dist/preset.mjs",
31
32
  "types": "./dist/preset.d.ts"
32
33
  },
33
- "./package.json": {
34
- "require": "./package.json",
35
- "import": "./package.json",
36
- "types": "./package.json"
37
- }
34
+ "./package.json": "./package.json"
38
35
  },
39
36
  "main": "dist/index.js",
40
37
  "module": "dist/index.mjs",
41
38
  "types": "dist/index.d.ts",
42
39
  "files": [
43
40
  "dist/**/*",
44
- "types/**/*",
41
+ "template/**/*",
45
42
  "README.md",
46
43
  "*.js",
47
44
  "*.d.ts"
@@ -51,9 +48,9 @@
51
48
  "prep": "../../../scripts/prepare/bundle.ts"
52
49
  },
53
50
  "dependencies": {
54
- "@storybook/builder-webpack5": "7.0.0-beta.13",
55
- "@storybook/preset-react-webpack": "7.0.0-beta.13",
56
- "@storybook/react": "7.0.0-beta.13",
51
+ "@storybook/builder-webpack5": "7.0.0-beta.15",
52
+ "@storybook/preset-react-webpack": "7.0.0-beta.15",
53
+ "@storybook/react": "7.0.0-beta.15",
57
54
  "@types/node": "^16.0.0"
58
55
  },
59
56
  "devDependencies": {
@@ -86,5 +83,5 @@
86
83
  ],
87
84
  "platform": "node"
88
85
  },
89
- "gitHead": "ddf86bd126ede0c019d7c9494f99f24a5cad9908"
86
+ "gitHead": "ed794f9d13e2bfe696ed2b230a3da04c203519eb"
90
87
  }