Skip to content

Commit 999edd6

Browse files
committed
fix standalone transform runs - resolve path of transform
in the issue you linked [1] from jscodeshift, i think you forgot the `path.resolve` for non-http(s) imports (not even sure how they'd work tbh). i tried running a local transform and it didn't work, but with this fix it did regardless of where i called the `packages/cli/bin/codeshift-cli.js` from. i think you might've been using the packages and not the --transforms flag so i understand why you could've missed it 😅 tbh there are more improvements to make w/ the local transforms (see [2]) but this is the first step :D [1] facebook/jscodeshift#398 [2] hypermod-io#48 (comment) Signed-off-by: Kipras Melnikovas <kipras@kipras.org>
1 parent ed819f7 commit 999edd6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/cli/src/main.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,10 @@ export default async function main(paths: string[], flags: Flags) {
231231
);
232232

233233
for (const transform of transforms) {
234-
console.log(chalk.green('Running transform:'), transform);
234+
const resolvedTransformPath = path.resolve(transform);
235+
console.log(chalk.green('Running transform:'), resolvedTransformPath);
235236

236-
await jscodeshift.run(transform, paths, {
237+
await jscodeshift.run(resolvedTransformPath, paths, {
237238
verbose: flags.verbose,
238239
dry: flags.dry,
239240
print: true,

0 commit comments

Comments
 (0)