Skip to content

Commit 718c1ee

Browse files
committed
chore: use yarn instead of npx in scripts
1 parent ad6542c commit 718c1ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/generateClientTypesMap/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ const execAsync = promisify(exec);
4141
fileContent += JSON.stringify(clientTypesMap);
4242

4343
await writeFile(relativeFilePath, fileContent);
44-
await execAsync(`npx biome format --write ${relativeFilePath}`);
44+
await execAsync(`yarn biome format --write ${relativeFilePath}`);
4545
}
4646
})();

scripts/generateNewClientTests/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This script generates tests in src/transforms/v2-to-v3/__fixtures__/new-client
2-
// Run them using: npx tsx scripts/generateNewClientTests/index.ts
2+
// Run them using: yarn tsx scripts/generateNewClientTests/index.ts
33
import { writeFile } from "node:fs/promises";
44
import { join } from "node:path";
55

0 commit comments

Comments
 (0)