This repository contains a collection of codemod scripts based for use with JSCodeshift that help update React APIs.
npm install -g jscodeshift
git clone https://github.com/oportocala/idagio-codemod.git
or download a zip file fromhttps://github.com/oportocala/idagio-codemod/archive/master.zip
- Run
npm install
in the idagio-codemod directory- Alternatively, run
yarn
to install in the idagio-codemod directory for a reliable dependency resolution
- Alternatively, run
jscodeshift -t <codemod-script> <path>
- Use the
-d
option for a dry-run and use-p
to print the output for comparison
Converts connect
wrapped comments into compose
(from redux
).
jscodeshift -t idagio-codemod/transforms/compose-connect.js <path>