mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
651e3e9e6d
When returning a jsr specifier for resolve it seems like deno core does not work properly and hangs. Closes https://github.com/denoland/deno/issues/23551 Closes https://github.com/denoland/deno/issues/23139
22 lines
433 B
Text
22 lines
433 B
Text
{
|
|
"tempDir": true,
|
|
"steps": [{
|
|
"if": "unix",
|
|
"args": "compile --output main main.ts",
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "unix",
|
|
"commandName": "./main",
|
|
"args": [],
|
|
"output": "main.out"
|
|
}, {
|
|
"if": "windows",
|
|
"args": "compile --output main.exe main.ts",
|
|
"output": "[WILDCARD]"
|
|
}, {
|
|
"if": "windows",
|
|
"commandName": "./main.exe",
|
|
"args": [],
|
|
"output": "main.out"
|
|
}]
|
|
}
|