You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
λ deno run --frozen --cached-only --allow-write=./content/posts ./src/main.ts touch "what-is-dependency"
┏ ⚠️ Deno requests import access to "unpkg.com:443".
┠─ Requested by `import()` API.
┠─ To see a stack trace for this prompt, set the DENO_TRACE_PERMISSIONS environmental variable.
┠─ Learn more at: https://docs.deno.com/go/--allow-import
┠─ Run again with --allow-import to bypass this prompt.
┗ Allow? [y/n/A] (y = yes, allow; n = no, deny; A = allow all import permissions) >
error: Requires import access to "unpkg.com:443", run again with the --allow-import flag
at file:///Users/matklad/p/matklad.github.io/src/highlight.ts:3:19
matklad@TigerMac ~/p/matklad.github.io (master *) [1]
λ deno run --frozen --cached-only --allow-write=./content/posts ./src/main.ts touch "what-is-dependency"
✅ Granted import access to "unpkg.com:443".
touching ./content/posts/2024-12-30-what-is-dependency.dj
I am running Deno with --frozen and --chached-only, and it succeeds. Hence, it only uses locally cached&checksumed files. It shouldn't be asking me to allow it accessing unpkg as it shouldn't actually be talking to any remote machines in this scenario.
The text was updated successfully, but these errors were encountered:
The following interaction doesn't make sense:
I am running Deno with
--frozen
and--chached-only
, and it succeeds. Hence, it only uses locally cached&checksumed files. It shouldn't be asking me to allow it accessingunpkg
as it shouldn't actually be talking to any remote machines in this scenario.The text was updated successfully, but these errors were encountered: