diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-07-10 14:46:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-10 14:46:09 -0400 |
| commit | 4d2d764816d266e42f3b2251248b100abb667c83 (patch) | |
| tree | 814e4f208e6824b0d5a4217f14912b2512b185ed /tests/specs/publish/npm_workspace/add/index.ts | |
| parent | 69afa8718f322cf2ef5f5cf5bcecb10f1122f490 (diff) | |
feat(jsr): support publishing jsr packages in npm workspaces (#24507)
Supports publishing an npm workspace with a directory structure similar
to the following:
- workspace
- package.json
- package-a
- package.json
- jsr.json
- package-b
- package.json
- jsr.json
deno_config PR: https://github.com/denoland/deno_config/pull/77
Closes https://github.com/denoland/deno/issues/23638
Diffstat (limited to 'tests/specs/publish/npm_workspace/add/index.ts')
| -rw-r--r-- | tests/specs/publish/npm_workspace/add/index.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/specs/publish/npm_workspace/add/index.ts b/tests/specs/publish/npm_workspace/add/index.ts new file mode 100644 index 000000000..8d9b8a22a --- /dev/null +++ b/tests/specs/publish/npm_workspace/add/index.ts @@ -0,0 +1,3 @@ +export function add(a: number, b: number): number { + return a + b; +} |
