Running node/npm scripts with Deno
I am trying to use Deno in place of npm for a particular project.
I run
The scripts in the package.json are a series of
When I run
Should this use case work? If so, could you let me know what I'm missing?
Edit to add:
Thank you!
I run
deno install and it appears to install deps just fine from the package.json.The scripts in the package.json are a series of
tsx scripts, like:When I run
deno task test I get an error like:Should this use case work? If so, could you let me know what I'm missing?
Edit to add:
tsx is included as a devDepencies entry in the package.json.Thank you!
