summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/publish/node_specifier/mod.ts
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2024-02-01 05:18:44 +0100
committerGitHub <noreply@github.com>2024-02-01 05:18:44 +0100
commite58b1900a7b018a36deff22fdd34f4676180a4bb (patch)
tree3a20d6b43f6e34fb82a7fa152ab935d65dca0395 /cli/tests/testdata/publish/node_specifier/mod.ts
parent66e6ed65e9c9281a68b548ab01a2214d5a0aa1e3 (diff)
fix(publish): add node specifiers (#22213)
Diffstat (limited to 'cli/tests/testdata/publish/node_specifier/mod.ts')
-rw-r--r--cli/tests/testdata/publish/node_specifier/mod.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/testdata/publish/node_specifier/mod.ts b/cli/tests/testdata/publish/node_specifier/mod.ts
new file mode 100644
index 000000000..9d8263709
--- /dev/null
+++ b/cli/tests/testdata/publish/node_specifier/mod.ts
@@ -0,0 +1,5 @@
+import "node:http";
+
+export function foobar(): string {
+ return "string";
+}