From 0d1119ce0af3247f76805239d4fac7bc9933e9b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Nison?= Date: Fri, 25 Jun 2021 17:22:56 +0200 Subject: [PATCH] Don't rely on the .bin folder --- bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index 6640b37..52c368c 100644 --- a/bin/cli.js +++ b/bin/cli.js @@ -17,7 +17,7 @@ const chalk = require('chalk'); const isGitClean = require('is-git-clean'); const transformerDirectory = path.join(__dirname, '../', 'transforms'); -const jscodeshiftExecutable = require.resolve('.bin/jscodeshift'); +const jscodeshiftExecutable = require.resolve('jscodeshift/bin/jscodeshift'); function checkGitStatus(force) { let clean = false;