diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-05-24 00:43:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 23:43:38 +0000 |
commit | 92a8d09e498712aec2ba0e54a1ad85194ebd83af (patch) | |
tree | d26e89bb46850665b2ed357a11718d8148850880 /tests/registry | |
parent | 959739f609dddacde3bbe9ecede2f409214fb34c (diff) |
fix(npm): set up node_modules/.bin/ entries for package that provide bin entrypoints (#23496)
Closes https://github.com/denoland/deno/issues/23036
---------
Co-authored-by: Nathan Whitaker <nathan@deno.com>
Diffstat (limited to 'tests/registry')
-rw-r--r-- | tests/registry/npm/@denotest/bin/1.0.0/cli.mjs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/bin/1.0.0/cli.mjs b/tests/registry/npm/@denotest/bin/1.0.0/cli.mjs index 0ae8e9190..7f6d1793a 100644 --- a/tests/registry/npm/@denotest/bin/1.0.0/cli.mjs +++ b/tests/registry/npm/@denotest/bin/1.0.0/cli.mjs @@ -1,3 +1,5 @@ +#!/usr/bin/env -S node + import process from "node:process"; for (const arg of process.argv.slice(2)) { |