From 143ea4759fa32bcd32ff983caeaec08929a52e80 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 23 May 2024 11:39:48 -0400 Subject: feat(task): run `npm run` commands with Deno more often (#23794) Closes #23036 --- tests/specs/task/npm_run/deno.jsonc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/specs/task/npm_run/deno.jsonc (limited to 'tests/specs/task/npm_run/deno.jsonc') diff --git a/tests/specs/task/npm_run/deno.jsonc b/tests/specs/task/npm_run/deno.jsonc new file mode 100644 index 000000000..bd6dde873 --- /dev/null +++ b/tests/specs/task/npm_run/deno.jsonc @@ -0,0 +1,11 @@ +{ + "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" + } +} -- cgit v1.2.3