summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/publish/deno_jsonc/std_http.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-01-15 16:07:57 +0100
committerGitHub <noreply@github.com>2024-01-15 15:07:57 +0000
commit72ecfe04198c5e912826663033a8963fbdea4521 (patch)
treedcff63d48db91916bdc8f92b38fd4cccee48f64e /cli/tests/testdata/publish/deno_jsonc/std_http.ts
parentbc8d00c880756a46b0ce4c8bf0c89407a2de669c (diff)
fix(publish): support deno.jsonc file (#21948)
Diffstat (limited to 'cli/tests/testdata/publish/deno_jsonc/std_http.ts')
-rw-r--r--cli/tests/testdata/publish/deno_jsonc/std_http.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/testdata/publish/deno_jsonc/std_http.ts b/cli/tests/testdata/publish/deno_jsonc/std_http.ts
new file mode 100644
index 000000000..9d57b36f3
--- /dev/null
+++ b/cli/tests/testdata/publish/deno_jsonc/std_http.ts
@@ -0,0 +1,6 @@
+// temp until we get jsr:@std/http in the test server
+export default {
+ fileServer() {
+ console.log("Hi");
+ },
+};