diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-03 15:56:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-03 13:56:39 +0000 |
| commit | b8ed6f822174b2322fbe9f8b58698b76b5505b4a (patch) | |
| tree | 324f208e53ac8f5ee1f04e7c69fc7d8f4946c81e /tests/specs/task/bin_pkg_with_scope_none/package.json | |
| parent | 7c594023256ffdc8a16db017676319da448dd926 (diff) | |
fix(task): correct name for scoped npm package binaries (#25390)
This is for when not using a node_modules directory or when using auto
install for a node_modules dir.
Diffstat (limited to 'tests/specs/task/bin_pkg_with_scope_none/package.json')
| -rw-r--r-- | tests/specs/task/bin_pkg_with_scope_none/package.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/specs/task/bin_pkg_with_scope_none/package.json b/tests/specs/task/bin_pkg_with_scope_none/package.json new file mode 100644 index 000000000..2ee4c2bbb --- /dev/null +++ b/tests/specs/task/bin_pkg_with_scope_none/package.json @@ -0,0 +1,9 @@ +{ + "scripts": { + "bin": "bin hi && cli-esm testing this out && npx cli-cjs test" + }, + "dependencies": { + "@denotest/bin": "0.5", + "other": "npm:@denotest/bin@1.0" + } +} |
