Material-UI Migration Helper:codemod-script?

问题描述 投票:1回答:1

我正在从Material-UI 0.x更新到1.0。

migration-helper的文档说要运行:

 jscodeshift -t <codemod-script> <path>. 

我之前从未使用过jscodeshift,之前我从未见过这种符号,所以我想就如何使用它获得一些建议。 :)谷歌搜索jscodeshift codemod-script没有任何相关性。

codemod-script需要做什么?

node.js reactjs migration material-ui jscodeshift
1个回答
2
投票

我花了一点时间才弄明白这一点。在安装了jscodeshift和material-ui codemods之后,该命令的格式应如下所示:

jscodeshift -t <the file path of the specific code mod file> <the location of the files you want to process>

jscodeshift -t ./node_modules/@material-ui/codemod/lib/v1.0.0/svg-icon-imports.js ./src/

我还使用扩展名jsx作为我的文件,所以我不得不添加--extensions标志:

jscodeshift -t ./node_modules/@material-ui/codemod/lib/v1.0.0/svg-icon-imports.js ./src/ --extensions jsx

© www.soinside.com 2019 - 2024. All rights reserved.