From d0c5ff42f4b5fa9b848e6ed5af2e480d12f15bda Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 26 May 2023 13:33:38 -0400 Subject: fix(compile): implicit read permission to npm vfs (#19281) Closes #19280 --- cli/tests/testdata/compile/vfs_implicit_read_permission/main.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 cli/tests/testdata/compile/vfs_implicit_read_permission/main.ts (limited to 'cli/tests/testdata/compile/vfs_implicit_read_permission/main.ts') 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!" })); -- cgit v1.2.3