diff options
Diffstat (limited to 'cli/tests/testdata/publish/deno_jsonc')
-rw-r--r-- | cli/tests/testdata/publish/deno_jsonc/deno.jsonc | 11 | ||||
-rw-r--r-- | cli/tests/testdata/publish/deno_jsonc/mod.ts | 5 | ||||
-rw-r--r-- | cli/tests/testdata/publish/deno_jsonc/std_http.ts | 6 |
3 files changed, 0 insertions, 22 deletions
diff --git a/cli/tests/testdata/publish/deno_jsonc/deno.jsonc b/cli/tests/testdata/publish/deno_jsonc/deno.jsonc deleted file mode 100644 index 4c9dfb08c..000000000 --- a/cli/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/cli/tests/testdata/publish/deno_jsonc/mod.ts b/cli/tests/testdata/publish/deno_jsonc/mod.ts deleted file mode 100644 index 4bb6da255..000000000 --- a/cli/tests/testdata/publish/deno_jsonc/mod.ts +++ /dev/null @@ -1,5 +0,0 @@ -import http from "@std/http"; - -export function foobar(): { fileServer(): void } { - return http.fileServer; -} diff --git a/cli/tests/testdata/publish/deno_jsonc/std_http.ts b/cli/tests/testdata/publish/deno_jsonc/std_http.ts deleted file mode 100644 index 9d57b36f3..000000000 --- a/cli/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"); - }, -}; |