@mui/codemod 5.15.3 → 5.15.5
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/codemod.js +1 -1
- package/package.json +14 -13
package/codemod.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/codemod",
|
|
3
|
-
"version": "5.15.
|
|
3
|
+
"version": "5.15.5",
|
|
4
4
|
"bin": "./codemod.js",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "MUI Team",
|
|
@@ -12,12 +12,6 @@
|
|
|
12
12
|
"codemod",
|
|
13
13
|
"jscodeshift"
|
|
14
14
|
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-codemod/**/*.test.js'",
|
|
17
|
-
"prebuild": "rimraf build",
|
|
18
|
-
"build": "node ../../scripts/build.mjs node --out-dir ./build && cpy README.md build && cpy package.json build && cpy codemod.js build",
|
|
19
|
-
"release": "yarn build && npm publish"
|
|
20
|
-
},
|
|
21
15
|
"repository": {
|
|
22
16
|
"type": "git",
|
|
23
17
|
"url": "https://github.com/mui/material-ui.git",
|
|
@@ -30,9 +24,9 @@
|
|
|
30
24
|
"url": "https://opencollective.com/mui-org"
|
|
31
25
|
},
|
|
32
26
|
"dependencies": {
|
|
33
|
-
"@babel/core": "^7.23.
|
|
34
|
-
"@babel/runtime": "^7.23.
|
|
35
|
-
"@babel/traverse": "^7.23.
|
|
27
|
+
"@babel/core": "^7.23.7",
|
|
28
|
+
"@babel/runtime": "^7.23.8",
|
|
29
|
+
"@babel/traverse": "^7.23.7",
|
|
36
30
|
"jscodeshift": "^0.13.1",
|
|
37
31
|
"jscodeshift-add-imports": "^1.0.10",
|
|
38
32
|
"yargs": "^17.7.2"
|
|
@@ -40,13 +34,20 @@
|
|
|
40
34
|
"devDependencies": {
|
|
41
35
|
"@types/chai": "^4.3.11",
|
|
42
36
|
"@types/jscodeshift": "0.11.5",
|
|
43
|
-
"chai": "^4.
|
|
37
|
+
"chai": "^4.4.1"
|
|
44
38
|
},
|
|
45
39
|
"sideEffects": false,
|
|
46
40
|
"publishConfig": {
|
|
47
|
-
"access": "public"
|
|
41
|
+
"access": "public",
|
|
42
|
+
"directory": "build"
|
|
48
43
|
},
|
|
49
44
|
"engines": {
|
|
50
45
|
"node": ">=12.0.0"
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-codemod/**/*.test.js'",
|
|
49
|
+
"prebuild": "rimraf build",
|
|
50
|
+
"build": "node ../../scripts/build.mjs node --out-dir ./build && cpy README.md build && cpy package.json build && cpy codemod.js build",
|
|
51
|
+
"release": "pnpm build && pnpm publish"
|
|
51
52
|
}
|
|
52
|
-
}
|
|
53
|
+
}
|