mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
4d2d764816
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
3 lines
75 B
TypeScript
3 lines
75 B
TypeScript
export function subtract(a: number, b: number): number {
|
|
return a - b;
|
|
}
|