Skip to content

Commit 221aa8c

Browse files
hyperpolymathclaude
andcommitted
fix: replace deno -A with specific permission flags in rescript-deno-starter
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 a10bed3 commit 221aa8c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • rescript-ecosystem/rescript-deno-starter/src

rescript-ecosystem/rescript-deno-starter/src/cli.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
// No npm, no node_modules (unless --node-modules-dir is needed for ReScript).
99
//
1010
// Usage:
11-
// deno run -A jsr:@hyperpolymath/rescript-deno init my-app
12-
// deno run -A jsr:@hyperpolymath/rescript-deno build
13-
// deno run -A jsr:@hyperpolymath/rescript-deno dev
14-
// deno run -A jsr:@hyperpolymath/rescript-deno clean
11+
// deno run --allow-run --allow-read --allow-write --allow-env --allow-net jsr:@hyperpolymath/rescript-deno init my-app
12+
// deno run --allow-run --allow-read --allow-write --allow-env --allow-net jsr:@hyperpolymath/rescript-deno build
13+
// deno run --allow-run --allow-read --allow-write --allow-env --allow-net jsr:@hyperpolymath/rescript-deno dev
14+
// deno run --allow-run --allow-read --allow-write --allow-env --allow-net jsr:@hyperpolymath/rescript-deno clean
1515

1616
const VERSION = "1.0.0";
1717

0 commit comments

Comments
 (0)