Skip to content

Commit

Permalink
Update Prettier Script
Browse files Browse the repository at this point in the history
  • Loading branch information
KuryKat authored Sep 24, 2023
1 parent d5bf29c commit cdf5a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/prettier/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const directories: string[] = [
const prettiers: Promise<Deno.ProcessStatus>[] = [];
directories.forEach(directory => {
prettiers.push(Deno.run({
cmd: ['npx', '--yes', 'prettier', directory, '--loglevel=debug', '--write'],
cmd: ['npx', '--yes', 'prettier', directory, '--log-level=debug', '--write'],
}).status());
});

Expand Down

0 comments on commit cdf5a77

Please sign in to comment.