我正在从Material-UI 0.x更新到1.0。
migration-helper的文档说要运行:
jscodeshift -t <codemod-script> <path>.
我之前从未使用过jscodeshift,之前我从未见过这种符号,所以我想就如何使用它获得一些建议。 :)谷歌搜索jscodeshift codemod-script
没有任何相关性。
codemod-script
需要做什么?
我花了一点时间才弄明白这一点。在安装了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