mirror of
https://github.com/denoland/deno.git
synced 2024-12-20 06:15:44 -05:00
23 lines
498 B
Text
23 lines
498 B
Text
|
{
|
||
|
"base": "npm",
|
||
|
"steps": [{
|
||
|
"args": "run --allow-read --allow-env main.js",
|
||
|
"output": "main.out"
|
||
|
}, {
|
||
|
"cleanDenoDir": true,
|
||
|
"args": "test --allow-read --allow-env test.js",
|
||
|
"output": "test.out"
|
||
|
}, {
|
||
|
"cleanDenoDir": true,
|
||
|
"args": [
|
||
|
"eval",
|
||
|
"import chalk from 'npm:chalk@5'; console.log(chalk.green('chalk esm loads'));"
|
||
|
],
|
||
|
"output": "main.out"
|
||
|
}, {
|
||
|
"args": "bundle --quiet main.js",
|
||
|
"output": "bundle.out",
|
||
|
"exitCode": 1
|
||
|
}]
|
||
|
}
|