@storybook/codemod 6.4.0-beta.24 → 6.4.0-beta.28

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.
Files changed (41) hide show
  1. package/dist/cjs/index.js +142 -0
  2. package/dist/cjs/lib/utils.js +40 -0
  3. package/dist/cjs/transforms/add-component-parameters.js +64 -0
  4. package/dist/cjs/transforms/csf-2-to-3.js +169 -0
  5. package/dist/cjs/transforms/csf-hoist-story-annotations.js +93 -0
  6. package/dist/cjs/transforms/csf-to-mdx.js +196 -0
  7. package/dist/cjs/transforms/mdx-to-csf.js +153 -0
  8. package/dist/cjs/transforms/move-builtin-addons.js +57 -0
  9. package/dist/cjs/transforms/storiesof-to-csf.js +300 -0
  10. package/dist/cjs/transforms/update-addon-info.js +101 -0
  11. package/dist/cjs/transforms/update-organisation-name.js +83 -0
  12. package/dist/cjs/transforms/upgrade-hierarchy-separators.js +42 -0
  13. package/dist/esm/index.js +99 -0
  14. package/dist/esm/lib/utils.js +25 -0
  15. package/dist/esm/transforms/add-component-parameters.js +57 -0
  16. package/dist/esm/transforms/csf-2-to-3.js +152 -0
  17. package/dist/esm/transforms/csf-hoist-story-annotations.js +86 -0
  18. package/dist/esm/transforms/csf-to-mdx.js +188 -0
  19. package/dist/esm/transforms/mdx-to-csf.js +139 -0
  20. package/dist/esm/transforms/move-builtin-addons.js +50 -0
  21. package/dist/esm/transforms/storiesof-to-csf.js +287 -0
  22. package/dist/esm/transforms/update-addon-info.js +94 -0
  23. package/dist/esm/transforms/update-organisation-name.js +74 -0
  24. package/dist/esm/transforms/upgrade-hierarchy-separators.js +35 -0
  25. package/dist/modern/index.js +99 -0
  26. package/dist/modern/lib/utils.js +25 -0
  27. package/dist/modern/transforms/add-component-parameters.js +57 -0
  28. package/dist/modern/transforms/csf-2-to-3.js +152 -0
  29. package/dist/modern/transforms/csf-hoist-story-annotations.js +86 -0
  30. package/dist/modern/transforms/csf-to-mdx.js +188 -0
  31. package/dist/modern/transforms/mdx-to-csf.js +139 -0
  32. package/dist/modern/transforms/move-builtin-addons.js +50 -0
  33. package/dist/modern/transforms/storiesof-to-csf.js +287 -0
  34. package/dist/modern/transforms/update-addon-info.js +94 -0
  35. package/dist/modern/transforms/update-organisation-name.js +74 -0
  36. package/dist/modern/transforms/upgrade-hierarchy-separators.js +35 -0
  37. package/dist/ts3.4/lib/utils.d.ts +2 -0
  38. package/dist/ts3.4/transforms/csf-2-to-3.d.ts +6 -0
  39. package/dist/ts3.9/lib/utils.d.ts +2 -0
  40. package/dist/ts3.9/transforms/csf-2-to-3.d.ts +6 -0
  41. package/package.json +4 -4
@@ -0,0 +1,287 @@
1
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
2
+
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
4
+
5
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+
7
+ import prettier from 'prettier';
8
+ import { logger } from '@storybook/node-logger';
9
+ import { storyNameFromExport } from '@storybook/csf';
10
+ import { sanitizeName, jscodeshiftToPrettierParser } from '../lib/utils';
11
+ /**
12
+ * Convert a legacy story API to component story format
13
+ *
14
+ * For example:
15
+ *
16
+ * ```
17
+ * input { Button } from './Button';
18
+ * storiesOf('Button', module).add('story', () => <Button label="The Button" />);
19
+ * ```
20
+ *
21
+ * Becomes:
22
+ *
23
+ * ```
24
+ * input { Button } from './Button';
25
+ * export default {
26
+ * title: 'Button'
27
+ * }
28
+ * export const story = () => <Button label="The Button" />;
29
+ *
30
+ * NOTES: only support chained storiesOf() calls
31
+ */
32
+
33
+ export default function transformer(file, api, options) {
34
+ var LITERAL = ['ts', 'tsx'].includes(options.parser) ? 'StringLiteral' : 'Literal';
35
+ var j = api.jscodeshift;
36
+ var root = j(file.source);
37
+
38
+ function extractDecorators(parameters) {
39
+ if (!parameters) {
40
+ return {};
41
+ }
42
+
43
+ if (!parameters.properties) {
44
+ return {
45
+ storyParams: parameters
46
+ };
47
+ }
48
+
49
+ var storyDecorators = parameters.properties.find(function (p) {
50
+ return p.key.name === 'decorators';
51
+ });
52
+
53
+ if (!storyDecorators) {
54
+ return {
55
+ storyParams: parameters
56
+ };
57
+ }
58
+
59
+ storyDecorators = storyDecorators.value;
60
+
61
+ var storyParams = _objectSpread({}, parameters);
62
+
63
+ storyParams.properties = storyParams.properties.filter(function (p) {
64
+ return p.key.name !== 'decorators';
65
+ });
66
+
67
+ if (storyParams.properties.length === 0) {
68
+ return {
69
+ storyDecorators: storyDecorators
70
+ };
71
+ }
72
+
73
+ return {
74
+ storyParams: storyParams,
75
+ storyDecorators: storyDecorators
76
+ };
77
+ }
78
+
79
+ function convertToModuleExports(path, originalExports) {
80
+ var base = j(path);
81
+ var statements = [];
82
+ var extraExports = []; // .addDecorator
83
+
84
+ var decorators = [];
85
+ base.find(j.CallExpression).filter(function (call) {
86
+ return call.node.callee.property && call.node.callee.property.name === 'addDecorator';
87
+ }).forEach(function (add) {
88
+ var decorator = add.node.arguments[0];
89
+ decorators.push(decorator);
90
+ });
91
+
92
+ if (decorators.length > 0) {
93
+ decorators.reverse();
94
+ extraExports.push(j.property('init', j.identifier('decorators'), j.arrayExpression(decorators)));
95
+ } // .addParameters
96
+
97
+
98
+ var parameters = [];
99
+ base.find(j.CallExpression).filter(function (call) {
100
+ return call.node.callee.property && call.node.callee.property.name === 'addParameters';
101
+ }).forEach(function (add) {
102
+ // jscodeshift gives us the find results in reverse, but these args come in
103
+ // order, so we double reverse here. ugh.
104
+ var params = [...add.node.arguments[0].properties];
105
+ params.reverse();
106
+ params.forEach(function (prop) {
107
+ return parameters.push(prop);
108
+ });
109
+ });
110
+
111
+ if (parameters.length > 0) {
112
+ parameters.reverse();
113
+ extraExports.push(j.property('init', j.identifier('parameters'), j.objectExpression(parameters)));
114
+ }
115
+
116
+ if (originalExports.length > 0) {
117
+ extraExports.push(j.property('init', j.identifier('excludeStories'), j.arrayExpression(originalExports.map(function (exp) {
118
+ return j.literal(exp);
119
+ }))));
120
+ } // storiesOf(...)
121
+
122
+
123
+ base.find(j.CallExpression).filter(function (call) {
124
+ return call.node.callee.name === 'storiesOf';
125
+ }).filter(function (call) {
126
+ return call.node.arguments.length > 0 && call.node.arguments[0].type === LITERAL;
127
+ }).forEach(function (storiesOf) {
128
+ var title = storiesOf.node.arguments[0].value;
129
+ statements.push(j.exportDefaultDeclaration(j.objectExpression([j.property('init', j.identifier('title'), j.literal(title)), ...extraExports])));
130
+ }); // .add(...)
131
+
132
+ var adds = [];
133
+ base.find(j.CallExpression).filter(function (add) {
134
+ return add.node.callee.property && add.node.callee.property.name === 'add';
135
+ }).filter(function (add) {
136
+ return add.node.arguments.length >= 2 && add.node.arguments[0].type === LITERAL;
137
+ }).forEach(function (add) {
138
+ return adds.push(add);
139
+ });
140
+ adds.reverse();
141
+ adds.push(path);
142
+ var identifiers = new Set();
143
+ root.find(j.Identifier).forEach(function ({
144
+ value: value
145
+ }) {
146
+ return identifiers.add(value.name);
147
+ });
148
+ adds.forEach(function (add) {
149
+ var name = add.node.arguments[0].value;
150
+ var key = sanitizeName(name);
151
+
152
+ while (identifiers.has(key)) {
153
+ key = `_${key}`;
154
+ }
155
+
156
+ identifiers.add(key);
157
+
158
+ if (storyNameFromExport(key) === name) {
159
+ name = null;
160
+ }
161
+
162
+ var val = add.node.arguments[1];
163
+ statements.push(j.exportDeclaration(false, j.variableDeclaration('const', [j.variableDeclarator(j.identifier(key), val)])));
164
+ var storyAnnotations = [];
165
+
166
+ if (name) {
167
+ storyAnnotations.push(j.property('init', j.identifier('name'), j.literal(name)));
168
+ }
169
+
170
+ if (add.node.arguments.length > 2) {
171
+ var originalStoryParams = add.node.arguments[2];
172
+
173
+ var _extractDecorators = extractDecorators(originalStoryParams),
174
+ storyParams = _extractDecorators.storyParams,
175
+ storyDecorators = _extractDecorators.storyDecorators;
176
+
177
+ if (storyParams) {
178
+ storyAnnotations.push(j.property('init', j.identifier('parameters'), storyParams));
179
+ }
180
+
181
+ if (storyDecorators) {
182
+ storyAnnotations.push(j.property('init', j.identifier('decorators'), storyDecorators));
183
+ }
184
+ }
185
+
186
+ if (storyAnnotations.length > 0) {
187
+ statements.push(j.assignmentStatement('=', j.memberExpression(j.identifier(key), j.identifier('story')), j.objectExpression(storyAnnotations)));
188
+ }
189
+ });
190
+ var stmt = path.parent.node.type === 'VariableDeclarator' ? path.parent.parent : path.parent;
191
+ statements.reverse();
192
+ statements.forEach(function (s) {
193
+ return stmt.insertAfter(s);
194
+ });
195
+ j(stmt).remove();
196
+ } // Save the original storiesOf
197
+
198
+
199
+ var initialStoriesOf = root.find(j.CallExpression).filter(function (call) {
200
+ return call.node.callee.name === 'storiesOf';
201
+ });
202
+ var defaultExports = root.find(j.ExportDefaultDeclaration); // If there's already a default export
203
+
204
+ if (defaultExports.size() > 0) {
205
+ if (initialStoriesOf.size() > 0) {
206
+ logger.warn(`Found ${initialStoriesOf.size()} 'storiesOf' calls but existing default export, SKIPPING: '${file.path}'`);
207
+ }
208
+
209
+ return root.toSource();
210
+ } // Exclude all the original named exports
211
+
212
+
213
+ var originalExports = [];
214
+ root.find(j.ExportNamedDeclaration).forEach(function (exp) {
215
+ var _exp$node = exp.node,
216
+ declaration = _exp$node.declaration,
217
+ specifiers = _exp$node.specifiers;
218
+
219
+ if (declaration) {
220
+ var id = declaration.id,
221
+ declarations = declaration.declarations;
222
+
223
+ if (declarations) {
224
+ declarations.forEach(function (decl) {
225
+ var _decl$id = decl.id,
226
+ name = _decl$id.name,
227
+ properties = _decl$id.properties;
228
+
229
+ if (name) {
230
+ originalExports.push(name);
231
+ } else if (properties) {
232
+ properties.forEach(function (prop) {
233
+ return originalExports.push(prop.key.name);
234
+ });
235
+ }
236
+ });
237
+ } else if (id) {
238
+ originalExports.push(id.name);
239
+ }
240
+ } else if (specifiers) {
241
+ specifiers.forEach(function (spec) {
242
+ return originalExports.push(spec.exported.name);
243
+ });
244
+ }
245
+ }); // each top-level add expression corresponds to the last "add" of the chain.
246
+ // replace it with the entire export statements
247
+
248
+ root.find(j.CallExpression).filter(function (add) {
249
+ return add.node.callee.property && add.node.callee.property.name === 'add';
250
+ }).filter(function (add) {
251
+ return add.node.arguments.length >= 2 && add.node.arguments[0].type === LITERAL;
252
+ }).filter(function (add) {
253
+ return ['ExpressionStatement', 'VariableDeclarator'].includes(add.parentPath.node.type);
254
+ }).forEach(function (path) {
255
+ return convertToModuleExports(path, originalExports);
256
+ }); // remove storiesOf import
257
+
258
+ root.find(j.ImportSpecifier).filter(function (spec) {
259
+ return spec.node.imported.name === 'storiesOf' && spec.parent.node.source.value.startsWith('@storybook/');
260
+ }).forEach(function (spec) {
261
+ var toRemove = spec.parent.node.specifiers.length > 1 ? spec : spec.parent;
262
+ j(toRemove).remove();
263
+ });
264
+ var source = root.toSource({
265
+ trailingComma: true,
266
+ quote: 'single',
267
+ tabWidth: 2
268
+ });
269
+
270
+ if (initialStoriesOf.size() > 1) {
271
+ logger.warn(`Found ${initialStoriesOf.size()} 'storiesOf' calls, PLEASE FIX BY HAND: '${file.path}'`);
272
+ return source;
273
+ }
274
+
275
+ var prettierConfig = prettier.resolveConfig.sync('.', {
276
+ editorconfig: true
277
+ }) || {
278
+ printWidth: 100,
279
+ tabWidth: 2,
280
+ bracketSpacing: true,
281
+ trailingComma: 'es5',
282
+ singleQuote: true
283
+ };
284
+ return prettier.format(source, _objectSpread(_objectSpread({}, prettierConfig), {}, {
285
+ parser: jscodeshiftToPrettierParser(options.parser) || 'babel'
286
+ }));
287
+ }
@@ -0,0 +1,94 @@
1
+ /**
2
+ * Takes the deprecated addon-info API, addWithInfo, and
3
+ * converts to the new withInfo API.
4
+ *
5
+ * Example of deprecated addWithInfo API:
6
+ *
7
+ * storiesOf('Button')
8
+ * .addWithInfo(
9
+ * 'story name',
10
+ * 'Story description.',
11
+ * () => (
12
+ * <Button label="The Button" />
13
+ * )
14
+ * )
15
+ *
16
+ * Converts to the new withInfo API:
17
+ *
18
+ * storiesOf('Button')
19
+ * .add('story name', withInfo(
20
+ * 'Story description.'
21
+ * )(() => (
22
+ * <Button label="The Button" />
23
+ * )))
24
+ */
25
+ export default function transformer(file, api) {
26
+ var j = api.jscodeshift;
27
+ var root = j(file.source);
28
+ /**
29
+ * Returns a list of parameters for the withInfo function. The contents
30
+ * of this list is either the second argument from the original
31
+ * addWithInfo function, if no additional options were used, or a
32
+ * combined object of all the options from the original function.
33
+ * @param {list} args - original addWithInfo function parameters
34
+ * @return {list} the modified list of parameters for the new function
35
+ */
36
+
37
+ var getOptions = function (args) {
38
+ if (args[3] === undefined) {
39
+ if (args[2] === undefined) {
40
+ // when the optional description string is not supplied for addWithInfo, use story name
41
+ return [args[0]];
42
+ }
43
+
44
+ return [args[1]];
45
+ }
46
+
47
+ return [j.objectExpression([j.property('init', j.identifier('text'), args[1]), ...args[3].properties])];
48
+ };
49
+ /**
50
+ * Constructs the new withInfo function from the parameters of the
51
+ * original addWithInfo function.
52
+ * @param {CallExpression} addWithInfoExpression - original function
53
+ * @returns {CallExpression} the new withInfo function
54
+ */
55
+
56
+
57
+ var withInfo = function (addWithInfoExpression) {
58
+ var node = addWithInfoExpression.node;
59
+ var args = node.arguments; // if optional description string is not supplied, the story component becomes second arg
60
+
61
+ var storyComponent = args[2] ? args[2] : args[1];
62
+ node.callee.property.name = 'add';
63
+ node.arguments = [args[0], j.callExpression(j.callExpression(j.identifier('withInfo'), getOptions(args)), [storyComponent])];
64
+ return node;
65
+ };
66
+ /**
67
+ * Checks for - import { withInfo } from "@storybook/addon-info";
68
+ * Adds the import if necessary.
69
+ */
70
+
71
+
72
+ var checkWithInfoImport = function () {
73
+ var importExists = root.find(j.ImportDeclaration).filter(function (imp) {
74
+ return imp.node.source.value === '@storybook/addon-info';
75
+ }).size();
76
+ if (importExists) return;
77
+ root.find(j.ImportDeclaration).at(-1).insertAfter(j.importDeclaration([j.importSpecifier(j.identifier('withInfo'))], j.literal('@storybook/addon-info')));
78
+ };
79
+
80
+ var addWithInfoExpressions = root.find(j.CallExpression, {
81
+ callee: {
82
+ property: {
83
+ name: 'addWithInfo'
84
+ }
85
+ }
86
+ });
87
+
88
+ if (addWithInfoExpressions.size()) {
89
+ checkWithInfoImport();
90
+ addWithInfoExpressions.replaceWith(withInfo);
91
+ }
92
+
93
+ return root.toSource();
94
+ }
@@ -0,0 +1,74 @@
1
+ export var packageNames = {
2
+ '@kadira/react-storybook-decorator-centered': '@storybook/addon-centered',
3
+ '@kadira/storybook-addons': '@storybook/addons',
4
+ '@kadira/storybook-addon-actions': '@storybook/addon-actions',
5
+ '@kadira/storybook-addon-comments': '@storybook/addon-comments',
6
+ '@kadira/storybook-addon-graphql': '@storybook/addon-graphql',
7
+ '@kadira/storybook-addon-info': '@storybook/addon-info',
8
+ '@kadira/storybook-addon-knobs': '@storybook/addon-knobs',
9
+ '@kadira/storybook-addon-links': '@storybook/addon-links',
10
+ '@kadira/storybook-addon-notes': '@storybook/addon-notes',
11
+ '@kadira/storybook-addon-options': '@storybook/addon-options',
12
+ '@kadira/storybook-channels': '@storybook/channels',
13
+ '@kadira/storybook-channel-postmsg': '@storybook/channel-postmessage',
14
+ '@kadira/storybook-channel-websocket': '@storybook/channel-websocket',
15
+ '@kadira/storybook-ui': '@storybook/ui',
16
+ '@kadira/react-native-storybook': '@storybook/react-native',
17
+ '@kadira/react-storybook': '@storybook/react',
18
+ '@kadira/getstorybook': '@storybook/cli',
19
+ '@kadira/storybook': '@storybook/react',
20
+ storyshots: '@storybook/addon-storyshots',
21
+ getstorybook: '@storybook/cli'
22
+ };
23
+ export default function transformer(file, api) {
24
+ var j = api.jscodeshift;
25
+ var packageNamesKeys = Object.keys(packageNames);
26
+ /**
27
+ * Checks whether the node value matches a Storybook package
28
+ * @param {string} the import declaration node
29
+ * @returns {string} whether the node value matches a Storybook package
30
+ */
31
+
32
+ var getMatch = function (oldpart) {
33
+ return packageNamesKeys.find(function (newpart) {
34
+ return oldpart.match(newpart);
35
+ });
36
+ };
37
+ /**
38
+ * Returns the name of the Storybook packages with the organisation name,
39
+ * replacing the old `@kadira/` prefix.
40
+ * @param {string} oldPackageName the name of the old package
41
+ * @return {string} the new package name
42
+ * @example
43
+ * // returns '@storybook/storybook'
44
+ * getNewPackageName('@kadira/storybook')
45
+ */
46
+
47
+
48
+ var getNewPackageName = function (oldPackageName) {
49
+ var match = getMatch(oldPackageName);
50
+
51
+ if (match) {
52
+ var replacement = packageNames[match];
53
+ return oldPackageName.replace(match, replacement);
54
+ }
55
+
56
+ return oldPackageName;
57
+ };
58
+ /**
59
+ * updatePackageName - updates the source name of the Storybook packages
60
+ * @param {ImportDeclaration} declaration the import declaration
61
+ * @returns {ImportDeclaration.Node} the import declaration node
62
+ */
63
+
64
+
65
+ var updatePackageName = function (declaration) {
66
+ // eslint-disable-next-line no-param-reassign
67
+ declaration.node.source.value = getNewPackageName(declaration.node.source.value);
68
+ return declaration.node;
69
+ };
70
+
71
+ return j(file.source).find(j.ImportDeclaration).replaceWith(updatePackageName).toSource({
72
+ quote: 'single'
73
+ });
74
+ }
@@ -0,0 +1,35 @@
1
+ function upgradeSeparator(path) {
2
+ return path.replace(/[|.]/g, '/');
3
+ }
4
+
5
+ export default function transformer(file, api, options) {
6
+ var j = api.jscodeshift;
7
+ var root = j(file.source); // storiesOf(...)
8
+
9
+ root.find(j.CallExpression).filter(function (call) {
10
+ return call.node.callee.name === 'storiesOf';
11
+ }).filter(function (call) {
12
+ return call.node.arguments.length > 0 && ['Literal', 'StringLiteral'].includes(call.node.arguments[0].type);
13
+ }).forEach(function (call) {
14
+ var arg0 = call.node.arguments[0];
15
+ arg0.value = upgradeSeparator(arg0.value);
16
+ }); // export default { title: ... }
17
+
18
+ root.find(j.ExportDefaultDeclaration).filter(function (def) {
19
+ return def.node.declaration.properties.map(function (p) {
20
+ return p.key.name;
21
+ }).includes('title');
22
+ }).forEach(function (def) {
23
+ if (def.node.declaration && def.node.declaration.properties) {
24
+ def.node.declaration.properties.forEach(function (p) {
25
+ if (p.key.name === 'title') {
26
+ // eslint-disable-next-line no-param-reassign
27
+ p.value.value = upgradeSeparator(p.value.value);
28
+ }
29
+ });
30
+ }
31
+ });
32
+ return root.toSource({
33
+ quote: 'single'
34
+ });
35
+ }
@@ -0,0 +1,2 @@
1
+ export declare const sanitizeName: (name: string) => string;
2
+ export declare function jscodeshiftToPrettierParser(parser?: string): string;
@@ -0,0 +1,6 @@
1
+ declare function transform({ source }: {
2
+ source: string;
3
+ }, api: any, options: {
4
+ parser?: string;
5
+ }): string;
6
+ export default transform;
@@ -0,0 +1,2 @@
1
+ export declare const sanitizeName: (name: string) => string;
2
+ export declare function jscodeshiftToPrettierParser(parser?: string): string;
@@ -0,0 +1,6 @@
1
+ declare function transform({ source }: {
2
+ source: string;
3
+ }, api: any, options: {
4
+ parser?: string;
5
+ }): string;
6
+ export default transform;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/codemod",
3
- "version": "6.4.0-beta.24",
3
+ "version": "6.4.0-beta.28",
4
4
  "description": "A collection of codemod scripts written with JSCodeshift",
5
5
  "keywords": [
6
6
  "storybook"
@@ -44,8 +44,8 @@
44
44
  "@babel/types": "^7.12.11",
45
45
  "@mdx-js/mdx": "^1.6.22",
46
46
  "@storybook/csf": "0.0.2--canary.87bc651.0",
47
- "@storybook/csf-tools": "6.4.0-beta.24",
48
- "@storybook/node-logger": "6.4.0-beta.24",
47
+ "@storybook/csf-tools": "6.4.0-beta.28",
48
+ "@storybook/node-logger": "6.4.0-beta.28",
49
49
  "core-js": "^3.8.2",
50
50
  "cross-spawn": "^7.0.3",
51
51
  "globby": "^11.0.2",
@@ -62,6 +62,6 @@
62
62
  "publishConfig": {
63
63
  "access": "public"
64
64
  },
65
- "gitHead": "f53ba4d7210b5c4809d57c74d7a42314172aa63e",
65
+ "gitHead": "72316abb8354d1f84d2bf8f645b18aeb315768c3",
66
66
  "sbmodern": "dist/modern/index.js"
67
67
  }