1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

chore(release): fix workspace formatter (#20357)

This commit is contained in:
Divy Srivastava 2023-09-02 21:39:15 -07:00 committed by GitHub
parent 12f6ad32c2
commit d6c49353c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,7 +54,7 @@ export class DenoWorkspace {
async runFormatter() {
await this.#repo.command(
"deno run --unstable --allow-write --allow-read --allow-run ./tools/format.js",
"deno run --unstable --allow-write --allow-read --allow-net --allow-run ./tools/format.js",
);
}
}