1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 04:48:52 -05:00
denoland-deno/tests/specs/npm/es_module/__test__.jsonc
David Sherret 392579b5a6
chore(specs): use jsonc for metadata file (#22946)
Avoids the comment diagnostic that vscode gives. Also, automatically
renames .json to .jsonc for the time being.
2024-03-15 17:27:52 +00:00

22 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
}]
}