-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(install): use locked version of jsr package when fetching exports (…
- Loading branch information
1 parent
5e809f9
commit 79aca5c
Showing
17 changed files
with
128 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "jsr:@denotest/add@1"; |
3 changes: 3 additions & 0 deletions
3
tests/registry/jsr/@denotest/multiple-exports/0.7.0/data.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"a": 1 | ||
} |
1 change: 1 addition & 0 deletions
1
tests/registry/jsr/@denotest/multiple-exports/0.7.0/subtract.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "jsr:@denotest/subtract@1"; |
7 changes: 7 additions & 0 deletions
7
tests/registry/jsr/@denotest/multiple-exports/0.7.0_meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"exports": { | ||
"./add": "./add.ts", | ||
"./subtract": "./subtract.ts", | ||
"./data-json": "./data.json" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "jsr:@denotest/add@1"; |
3 changes: 3 additions & 0 deletions
3
tests/registry/jsr/@denotest/multiple-exports/0.7.1/data.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"a": 1 | ||
} |
3 changes: 3 additions & 0 deletions
3
tests/registry/jsr/@denotest/multiple-exports/0.7.1/multiply.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export function multiply(a: number, b: number): number { | ||
return a * b; | ||
} |
1 change: 1 addition & 0 deletions
1
tests/registry/jsr/@denotest/multiple-exports/0.7.1/subtract.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "jsr:@denotest/subtract@1"; |
8 changes: 8 additions & 0 deletions
8
tests/registry/jsr/@denotest/multiple-exports/0.7.1_meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"exports": { | ||
"./add": "./add.ts", | ||
"./subtract": "./subtract.ts", | ||
"./data-json": "./data.json", | ||
"./multiply": "./multiply.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"versions": { | ||
"1.0.0": {}, | ||
"0.7.1": {}, | ||
"0.7.0": {}, | ||
"0.5.0": {}, | ||
"0.2.0": {} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"tempDir": true, | ||
"steps": [ | ||
{ | ||
"args": "install", | ||
"output": "install.out" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"imports": { | ||
"@denotest/multiple-exports": "jsr:@denotest/multiple-exports@^0.7.0" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[UNORDERED_START] | ||
Download http://127.0.0.1:4250/@denotest/multiple-exports/0.7.0_meta.json | ||
Download http://127.0.0.1:4250/@denotest/multiple-exports/meta.json | ||
Download http://127.0.0.1:4250/@denotest/multiple-exports/0.7.0/add.ts | ||
Download http://127.0.0.1:4250/@denotest/multiple-exports/0.7.0/subtract.ts | ||
Download http://127.0.0.1:4250/@denotest/multiple-exports/0.7.0/data.json | ||
Download http://127.0.0.1:4250/@denotest/add/meta.json | ||
Download http://127.0.0.1:4250/@denotest/subtract/meta.json | ||
Download http://127.0.0.1:4250/@denotest/add/1.0.0_meta.json | ||
Download http://127.0.0.1:4250/@denotest/subtract/1.0.0_meta.json | ||
Download http://127.0.0.1:4250/@denotest/add/1.0.0/mod.ts | ||
Download http://127.0.0.1:4250/@denotest/subtract/1.0.0/mod.ts | ||
[UNORDERED_END] |