8 lines
132 B
Plaintext
8 lines
132 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
DIR=$(npm root -g)/react-codemod
|
||
|
|
TRANSFORM=$1
|
||
|
|
shift
|
||
|
|
|
||
|
|
$DIR/node_modules/.bin/jscodeshift -t $DIR/build/$TRANSFORM.js $@
|