We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98a6a9f commit 631d56cCopy full SHA for 631d56c
packages/codemod/rmd-codemod.ts
@@ -128,6 +128,8 @@ async function handleAction(options: Options): Promise<void> {
128
// prefix with `node` because of a bug around: "env: node\r"
129
const command = `node ${jscodeshiftExecutable} ${args.join(" ")}`;
130
console.log(command);
131
+ // react-codemod does it... so I'll ignore the security issue fo rnow.
132
+ // https://github.com/reactjs/react-codemod/blob/b34b92a1f0b8ad333efe5effb50d17d46d66588b/bin/cli.js
133
execSync(command, { stdio: "inherit" });
134
}
135
0 commit comments