@storybook/codemod 7.0.0-alpha.44 → 7.0.0-alpha.46

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/codemod",
3
- "version": "7.0.0-alpha.44",
3
+ "version": "7.0.0-alpha.46",
4
4
  "description": "A collection of codemod scripts written with JSCodeshift",
5
5
  "keywords": [
6
6
  "storybook"
@@ -39,9 +39,9 @@
39
39
  "dependencies": {
40
40
  "@babel/types": "^7.12.11",
41
41
  "@storybook/csf": "next",
42
- "@storybook/csf-tools": "7.0.0-alpha.44",
43
- "@storybook/node-logger": "7.0.0-alpha.44",
44
- "@storybook/types": "7.0.0-alpha.44",
42
+ "@storybook/csf-tools": "7.0.0-alpha.46",
43
+ "@storybook/node-logger": "7.0.0-alpha.46",
44
+ "@storybook/types": "7.0.0-alpha.46",
45
45
  "cross-spawn": "^7.0.3",
46
46
  "globby": "^11.0.2",
47
47
  "jscodeshift": "^0.13.1",
@@ -64,5 +64,5 @@
64
64
  "./src/index.js"
65
65
  ]
66
66
  },
67
- "gitHead": "d4965bd328d8f83c279560c7bc8428e490b275f3"
67
+ "gitHead": "c64b5be851ed2affac56e1daaac3f453fbe6f230"
68
68
  }
@@ -1,7 +1,8 @@
1
1
  /* eslint-disable no-underscore-dangle */
2
2
  import prettier from 'prettier';
3
3
  import * as t from '@babel/types';
4
- import { CsfFile, formatCsf, loadCsf } from '@storybook/csf-tools';
4
+ import type { CsfFile } from '@storybook/csf-tools';
5
+ import { formatCsf, loadCsf } from '@storybook/csf-tools';
5
6
  import { jscodeshiftToPrettierParser } from '../lib/utils';
6
7
 
7
8
  const logger = console;