diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-15 16:07:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-15 15:07:57 +0000 |
commit | 72ecfe04198c5e912826663033a8963fbdea4521 (patch) | |
tree | dcff63d48db91916bdc8f92b38fd4cccee48f64e /cli/tests/testdata/publish/deno_jsonc/std_http.ts | |
parent | bc8d00c880756a46b0ce4c8bf0c89407a2de669c (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.ts | 6 |
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"); + }, +}; |