diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-10 17:40:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-10 22:40:30 +0000 |
| commit | 70ac06138c18cf643e7e1947dee54f3adff13de3 (patch) | |
| tree | 73cd8fb7fe51ecbdcf47770b15b27f6fb49b4d05 /cli/tests/testdata/publish/workspace/bar | |
| parent | 515a34b4de222e35c7ade1b92614d746e73d4c2e (diff) | |
feat(unstable): fast subset type checking of JSR dependencies (#21873)
Diffstat (limited to 'cli/tests/testdata/publish/workspace/bar')
| -rw-r--r-- | cli/tests/testdata/publish/workspace/bar/deno.json | 7 | ||||
| -rw-r--r-- | cli/tests/testdata/publish/workspace/bar/mod.ts | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/cli/tests/testdata/publish/workspace/bar/deno.json b/cli/tests/testdata/publish/workspace/bar/deno.json new file mode 100644 index 000000000..213a7cec6 --- /dev/null +++ b/cli/tests/testdata/publish/workspace/bar/deno.json @@ -0,0 +1,7 @@ +{ + "name": "@foo/bar", + "version": "1.0.0", + "exports": { + ".": "./mod.ts" + } +} diff --git a/cli/tests/testdata/publish/workspace/bar/mod.ts b/cli/tests/testdata/publish/workspace/bar/mod.ts new file mode 100644 index 000000000..8d9b8a22a --- /dev/null +++ b/cli/tests/testdata/publish/workspace/bar/mod.ts @@ -0,0 +1,3 @@ +export function add(a: number, b: number): number { + return a + b; +} |
