diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-02-27 08:27:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 08:27:21 +0000 |
commit | f1a691274e59d3f6a1aad19d1aec02a0ffaa51d2 (patch) | |
tree | 0f15a121968bd93b2ec4e456d04d00cae483059f /tests/testdata/publish/jsr_jsonc/std_http.ts | |
parent | d722de886b85093eeef08d1e9fd6f3193405762d (diff) |
feat(publish): discover jsr.json and jsr.jsonc files (#22587)
Closes https://github.com/denoland/deno/issues/22491
Diffstat (limited to 'tests/testdata/publish/jsr_jsonc/std_http.ts')
-rw-r--r-- | tests/testdata/publish/jsr_jsonc/std_http.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/testdata/publish/jsr_jsonc/std_http.ts b/tests/testdata/publish/jsr_jsonc/std_http.ts new file mode 100644 index 000000000..9d57b36f3 --- /dev/null +++ b/tests/testdata/publish/jsr_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"); + }, +}; |