diff options
Diffstat (limited to 'tests/testdata/publish/deno_jsonc')
| -rw-r--r-- | tests/testdata/publish/deno_jsonc/deno.jsonc | 11 | ||||
| -rw-r--r-- | tests/testdata/publish/deno_jsonc/mod.ts | 7 | ||||
| -rw-r--r-- | tests/testdata/publish/deno_jsonc/std_http.ts | 6 |
3 files changed, 0 insertions, 24 deletions
diff --git a/tests/testdata/publish/deno_jsonc/deno.jsonc b/tests/testdata/publish/deno_jsonc/deno.jsonc deleted file mode 100644 index 4c9dfb08c..000000000 --- a/tests/testdata/publish/deno_jsonc/deno.jsonc +++ /dev/null @@ -1,11 +0,0 @@ -{ - // It's .jsonc file so it can have comments - "name": "@foo/bar", - "version": "1.0.0", - "exports": { - ".": "./mod.ts" - }, - "imports": { - "@std/http": "./std_http.ts" - } -} diff --git a/tests/testdata/publish/deno_jsonc/mod.ts b/tests/testdata/publish/deno_jsonc/mod.ts deleted file mode 100644 index 6e8a61bae..000000000 --- a/tests/testdata/publish/deno_jsonc/mod.ts +++ /dev/null @@ -1,7 +0,0 @@ -import http from "@std/http"; - -export function foobar(): { fileServer(): void } { - return { - fileServer: http.fileServer, - }; -} diff --git a/tests/testdata/publish/deno_jsonc/std_http.ts b/tests/testdata/publish/deno_jsonc/std_http.ts deleted file mode 100644 index 9d57b36f3..000000000 --- a/tests/testdata/publish/deno_jsonc/std_http.ts +++ /dev/null @@ -1,6 +0,0 @@ -// temp until we get jsr:@std/http in the test server -export default { - fileServer() { - console.log("Hi"); - }, -}; |
