Skip to content

Commit

Permalink
Use -dev versions of CLI tools
Browse files Browse the repository at this point in the history
  • Loading branch information
lhstrh committed Sep 7, 2023
1 parent 62f3d95 commit b6df42e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
})
)
Expand All @@ -27,7 +27,7 @@ export async function checkFormat(dir: string): Promise<number> {
return checkAll(
dir,
async filePath =>
await exec(`lff --check "${filePath}"`, {
await exec(`lff-dev --check "${filePath}"`, {
env: process.env
})
)
Expand Down

0 comments on commit b6df42e

Please sign in to comment.