diff --git a/src/check.ts b/src/check.ts index 26abff3..ae8692e 100644 --- a/src/check.ts +++ b/src/check.ts @@ -17,7 +17,7 @@ export async function checkCompile( return checkAll( dir, async filePath => - await exec(`lfc ${noCompile ? '--no-compile' : ''} "${filePath}"`, { + await exec(`lfc-dev ${noCompile ? '--no-compile' : ''} "${filePath}"`, { env: process.env }) ) @@ -27,7 +27,7 @@ export async function checkFormat(dir: string): Promise { return checkAll( dir, async filePath => - await exec(`lff --check "${filePath}"`, { + await exec(`lff-dev --check "${filePath}"`, { env: process.env }) )