summaryrefslogtreecommitdiff
path: root/tests/specs/task/byonm/package.json
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-04-20 20:13:46 -0400
committerGitHub <noreply@github.com>2024-04-20 20:13:46 -0400
commit695f314a913da3aa691381341385cbc1ef71b503 (patch)
tree4abec8c3b8a783630071e4897768a9f8037d72a1 /tests/specs/task/byonm/package.json
parente55087f57af657069090f63517ec776d8958e410 (diff)
feat(task): support running npm binary commands in deno.json (#23478)
npm binary commands like `vite` from a `node_modules/.bin` folder will now execute when defined in a deno.json Closes https://github.com/denoland/deno/issues/23477
Diffstat (limited to 'tests/specs/task/byonm/package.json')
-rw-r--r--tests/specs/task/byonm/package.json10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/specs/task/byonm/package.json b/tests/specs/task/byonm/package.json
new file mode 100644
index 000000000..a5944c24f
--- /dev/null
+++ b/tests/specs/task/byonm/package.json
@@ -0,0 +1,10 @@
+{
+ "name": "example",
+ "scripts": {
+ "say": "cowsay 'do make say'",
+ "think": "cowthink think"
+ },
+ "dependencies": {
+ "cowsay": "*"
+ }
+}