Permissions dump
Is there a way to dump permissions to console or to a shell file after answering the prompts interactively?
deno run --something-dump-permission="launch_deno.sh" smth.ts
✅ Granted env access to all.
✅ Granted read access to "/home/bogdanbiv/.cache/deno/npm/node_modules".
Desired output:
deno run --allow-env --allow-read=/home/bogdanbiv/.cache/deno/npm/node_modules
Update: On the other hand, I think I could try to do a TS that does this0 Replies