From 70ac06138c18cf643e7e1947dee54f3adff13de3 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Wed, 10 Jan 2024 17:40:30 -0500 Subject: feat(unstable): fast subset type checking of JSR dependencies (#21873) --- cli/tests/testdata/publish/workspace/bar/deno.json | 7 +++++++ cli/tests/testdata/publish/workspace/bar/mod.ts | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 cli/tests/testdata/publish/workspace/bar/deno.json create mode 100644 cli/tests/testdata/publish/workspace/bar/mod.ts (limited to 'cli/tests/testdata/publish/workspace/bar') 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; +} -- cgit v1.2.3