From 5f7c80986fd9cff6a65d4e419fc2972abe992ccf Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Fri, 6 Nov 2020 12:10:19 +1100 Subject: fix(cli): correct libs sent to tsc for unstable worker (#8260) Fixes #8257 --- cli/tests/subdir/worker_unstable.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cli/tests/subdir/worker_unstable.ts (limited to 'cli/tests/subdir') diff --git a/cli/tests/subdir/worker_unstable.ts b/cli/tests/subdir/worker_unstable.ts new file mode 100644 index 000000000..3a1ed8b74 --- /dev/null +++ b/cli/tests/subdir/worker_unstable.ts @@ -0,0 +1,5 @@ +console.log(Deno.permissions.query); +console.log(Deno.compile); +self.onmessage = () => { + self.close(); +}; -- cgit v1.2.3