summaryrefslogtreecommitdiff
path: root/tests/registry/jsr/@denotest/multiple-exports
diff options
context:
space:
mode:
Diffstat (limited to 'tests/registry/jsr/@denotest/multiple-exports')
-rw-r--r--tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts1
-rw-r--r--tests/registry/jsr/@denotest/multiple-exports/1.0.0/data.json3
-rw-r--r--tests/registry/jsr/@denotest/multiple-exports/1.0.0/subtract.ts1
-rw-r--r--tests/registry/jsr/@denotest/multiple-exports/1.0.0_meta.json7
-rw-r--r--tests/registry/jsr/@denotest/multiple-exports/meta.json5
5 files changed, 17 insertions, 0 deletions
diff --git a/tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts b/tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts
new file mode 100644
index 000000000..de02f6902
--- /dev/null
+++ b/tests/registry/jsr/@denotest/multiple-exports/1.0.0/add.ts
@@ -0,0 +1 @@
+export * from "jsr:@denotest/add@1";
diff --git a/tests/registry/jsr/@denotest/multiple-exports/1.0.0/data.json b/tests/registry/jsr/@denotest/multiple-exports/1.0.0/data.json
new file mode 100644
index 000000000..885e71c6c
--- /dev/null
+++ b/tests/registry/jsr/@denotest/multiple-exports/1.0.0/data.json
@@ -0,0 +1,3 @@
+{
+ "a": 1
+} \ No newline at end of file
diff --git a/tests/registry/jsr/@denotest/multiple-exports/1.0.0/subtract.ts b/tests/registry/jsr/@denotest/multiple-exports/1.0.0/subtract.ts
new file mode 100644
index 000000000..215c42310
--- /dev/null
+++ b/tests/registry/jsr/@denotest/multiple-exports/1.0.0/subtract.ts
@@ -0,0 +1 @@
+export * from "jsr:@denotest/subtract@1";
diff --git a/tests/registry/jsr/@denotest/multiple-exports/1.0.0_meta.json b/tests/registry/jsr/@denotest/multiple-exports/1.0.0_meta.json
new file mode 100644
index 000000000..d9f58b9a6
--- /dev/null
+++ b/tests/registry/jsr/@denotest/multiple-exports/1.0.0_meta.json
@@ -0,0 +1,7 @@
+{
+ "exports": {
+ "./add": "./add.ts",
+ "./subtract": "./subtract.ts",
+ "./data-json": "./data.json"
+ }
+}
diff --git a/tests/registry/jsr/@denotest/multiple-exports/meta.json b/tests/registry/jsr/@denotest/multiple-exports/meta.json
new file mode 100644
index 000000000..02601e4d0
--- /dev/null
+++ b/tests/registry/jsr/@denotest/multiple-exports/meta.json
@@ -0,0 +1,5 @@
+{
+ "versions": {
+ "1.0.0": {}
+ }
+}