diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-26 13:33:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 13:33:38 -0400 |
commit | d0c5ff42f4b5fa9b848e6ed5af2e480d12f15bda (patch) | |
tree | b15c419342dc422798b55fdeb9ee3b48cf055f82 /cli/tests/testdata/compile/vfs_implicit_read_permission/main.ts | |
parent | a11681a9b02f2f4a0f2bf6945a44b2937c6a9af1 (diff) |
fix(compile): implicit read permission to npm vfs (#19281)
Closes #19280
Diffstat (limited to 'cli/tests/testdata/compile/vfs_implicit_read_permission/main.ts')
-rw-r--r-- | cli/tests/testdata/compile/vfs_implicit_read_permission/main.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/testdata/compile/vfs_implicit_read_permission/main.ts b/cli/tests/testdata/compile/vfs_implicit_read_permission/main.ts new file mode 100644 index 000000000..56ad1e095 --- /dev/null +++ b/cli/tests/testdata/compile/vfs_implicit_read_permission/main.ts @@ -0,0 +1,3 @@ +// this will read a file from the package +import { say } from "npm:cowsay@1.5.0"; +console.log(say({ text: "Hello from Deno!" })); |