Skip to content

Commit

Permalink
fix: change --apply to --write in biome check command (#1616)
Browse files Browse the repository at this point in the history
  • Loading branch information
yajihum authored Sep 7, 2024
1 parent 47d3367 commit f516975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/orval/src/write-specs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export const writeSpecs = async (

if (output.biome) {
try {
await execa('biome', ['check', '--apply', ...paths]);
await execa('biome', ['check', '--write', ...paths]);
} catch (e: any) {
const message =
e.exitCode === 1
Expand Down

0 comments on commit f516975

Please sign in to comment.