summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/vendor/dynamic.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-02-16 13:14:19 -0500
committerGitHub <noreply@github.com>2022-02-16 13:14:19 -0500
commitb98afb59ae43b4fcfc2bf06e82942005d7f68c7b (patch)
treeba56c8fc5b287f19892c1f584bd5c65992b766fb /cli/tests/testdata/vendor/dynamic.ts
parent02c95d367e94f55f525646c2759558f52a493c69 (diff)
feat: deno vendor (#13670)
Diffstat (limited to 'cli/tests/testdata/vendor/dynamic.ts')
-rw-r--r--cli/tests/testdata/vendor/dynamic.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/testdata/vendor/dynamic.ts b/cli/tests/testdata/vendor/dynamic.ts
new file mode 100644
index 000000000..e2cbb0e59
--- /dev/null
+++ b/cli/tests/testdata/vendor/dynamic.ts
@@ -0,0 +1,3 @@
+const { Logger } = await import("./logger.ts");
+
+export { Logger };