@storybook/codemod 7.1.0-alpha.3 → 7.1.0-alpha.30
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/transforms/mdx-to-csf.js +17 -11
- package/package.json +15 -14
- package/tsconfig.json +2 -1
package/package.json
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/codemod",
|
3
|
-
"version": "7.1.0-alpha.
|
3
|
+
"version": "7.1.0-alpha.30",
|
4
4
|
"description": "A collection of codemod scripts written with JSCodeshift",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
7
7
|
],
|
8
|
-
"homepage": "https://github.com/storybookjs/storybook/tree/
|
8
|
+
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/lib/codemod",
|
9
9
|
"bugs": {
|
10
10
|
"url": "https://github.com/storybookjs/storybook/issues"
|
11
11
|
},
|
12
12
|
"repository": {
|
13
13
|
"type": "git",
|
14
14
|
"url": "https://github.com/storybookjs/storybook.git",
|
15
|
-
"directory": "lib/codemod"
|
15
|
+
"directory": "code/lib/codemod"
|
16
16
|
},
|
17
17
|
"funding": {
|
18
18
|
"type": "opencollective",
|
@@ -22,9 +22,9 @@
|
|
22
22
|
"sideEffects": false,
|
23
23
|
"exports": {
|
24
24
|
".": {
|
25
|
+
"types": "./dist/index.d.ts",
|
25
26
|
"node": "./dist/index.js",
|
26
|
-
"require": "./dist/index.js"
|
27
|
-
"types": "./dist/index.d.ts"
|
27
|
+
"require": "./dist/index.js"
|
28
28
|
},
|
29
29
|
"./dist/transforms/add-component-parameters.js": "./dist/transforms/add-component-parameters.js",
|
30
30
|
"./dist/transforms/csf-2-to-3.js": "./dist/transforms/csf-2-to-3.js",
|
@@ -45,13 +45,14 @@
|
|
45
45
|
"prep": "../../../scripts/prepare/bundle.ts"
|
46
46
|
},
|
47
47
|
"dependencies": {
|
48
|
-
"@babel/core": "
|
49
|
-
"@babel/preset-env": "
|
50
|
-
"@babel/types": "
|
48
|
+
"@babel/core": "^7.22.0",
|
49
|
+
"@babel/preset-env": "^7.22.0",
|
50
|
+
"@babel/types": "^7.22.0",
|
51
51
|
"@storybook/csf": "^0.1.0",
|
52
|
-
"@storybook/csf-tools": "7.1.0-alpha.
|
53
|
-
"@storybook/node-logger": "7.1.0-alpha.
|
54
|
-
"@storybook/types": "7.1.0-alpha.
|
52
|
+
"@storybook/csf-tools": "7.1.0-alpha.30",
|
53
|
+
"@storybook/node-logger": "7.1.0-alpha.30",
|
54
|
+
"@storybook/types": "7.1.0-alpha.30",
|
55
|
+
"@types/cross-spawn": "^6.0.2",
|
55
56
|
"cross-spawn": "^7.0.3",
|
56
57
|
"globby": "^11.0.2",
|
57
58
|
"jscodeshift": "^0.14.0",
|
@@ -63,7 +64,7 @@
|
|
63
64
|
"@types/jscodeshift": "^0.11.6",
|
64
65
|
"ansi-regex": "^5.0.1",
|
65
66
|
"jest": "^29.3.1",
|
66
|
-
"jest-specific-snapshot": "^
|
67
|
+
"jest-specific-snapshot": "^8.0.0",
|
67
68
|
"mdast-util-mdx-jsx": "^2.1.2",
|
68
69
|
"mdast-util-mdxjs-esm": "^1.3.1",
|
69
70
|
"remark": "^14.0.2",
|
@@ -97,5 +98,5 @@
|
|
97
98
|
"cjs"
|
98
99
|
]
|
99
100
|
},
|
100
|
-
"gitHead": "
|
101
|
-
}
|
101
|
+
"gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae16"
|
102
|
+
}
|