Skip to content

Commit f4b83ef

Browse files
committed
fix: join transforms with ','
depends on: https://github.com/pipedrive/CodeshiftCommunity/pull/5 Signed-off-by: Kipras Melnikovas <[email protected]>
1 parent 61cc949 commit f4b83ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

run.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ function run() {
6969
return t;
7070
}
7171
})
72-
.flat();
72+
.flat()
73+
.join(',');
7374

7475
const cliPath = path.join(__dirname, './packages/cli/bin/codeshift-cli.js');
7576

0 commit comments

Comments
 (0)