1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/specs/task/npm_run/deno.jsonc
2024-05-29 20:16:35 +00:00

12 lines
419 B
Text

{
"tasks": {
"echo": "echo 'Hello, World!'",
// should use the task from package.json and not the one above
"test": "npm run echo hi there",
// currently this will execute using the actual `npm run` because we
// haven't implemented the flags for `npm run` yet
"test_using_npm": "npm run non_existent -- --ignore-scripts",
"npm_run": "npm run",
"npm_run_args": "npm run -d echo"
}
}