mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
22 lines
531 B
Text
22 lines
531 B
Text
{
|
|
"tests": {
|
|
"workspace": {
|
|
"args": "publish --token 'sadfasdf'",
|
|
"output": "workspace.out"
|
|
},
|
|
"workspace_dry_run": {
|
|
"args": "publish --token 'sadfasdf' --dry-run",
|
|
"output": "workspace_dry_run.out"
|
|
},
|
|
"individual_dry_run": {
|
|
"cwd": "./foo",
|
|
"args": "publish --token 'sadfasdf' --dry-run",
|
|
"output": "foo_dry_run.out"
|
|
},
|
|
"individual": {
|
|
"cwd": "./bar",
|
|
"args": "publish --token 'sadfasdf'",
|
|
"output": "workspace_individual.out"
|
|
}
|
|
}
|
|
}
|