Skip to content

Commit 7a034b6

Browse files
hyperpolymathclaude
andcommitted
fix: replace deno -A with specific permission flags in bundle.ts
Replaces overly broad -A with targeted permissions. Detected by panic-attack assail batch scan (2026-03-30). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1dd12ca commit 7a034b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/bundle.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// cannot handle via import maps.
44
//
55
// Usage:
6-
// deno run -A scripts/bundle.ts # one-shot build
7-
// deno run -A scripts/bundle.ts --watch # watch mode for dev
6+
// deno run --allow-read --allow-write --allow-env --allow-net scripts/bundle.ts # one-shot build
7+
// deno run --allow-read --allow-write --allow-env --allow-net scripts/bundle.ts --watch # watch mode for dev
88

99
import * as esbuild from "npm:esbuild@0.24";
1010

0 commit comments

Comments
 (0)