Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-05-29 | fix(cli): Prefer npm bin entries provided by packages closer to the root ↵ | Nathan Whitaker | |
(#24024) Fixes #24012. In the case of multiple packages providing a binary with a same name, we were basically leaving the results undefined (since we set up things in parallel, and whichever got set up first won). In addition, we were warning about these cases, even though it's a situation that's expected to occur. Instead, in the case of a collision in the binary names, we prefer the binary provided by the package with the least depth in the dependency tree. While I was at it, I also took moved more code to `bin_entries.rs` since it was starting to get a bit cluttered. | |||
2024-05-23 | fix(npm): set up node_modules/.bin/ entries for package that provide bin ↵ | Bartek Iwańczuk | |
entrypoints (#23496) Closes https://github.com/denoland/deno/issues/23036 --------- Co-authored-by: Nathan Whitaker <nathan@deno.com> | |||
2024-05-07 | chore(test): move npm registries to separate servers and to the ↵ | David Sherret | |
`tests/registry` folder (#23717) 1. Moves the npm registries to their own dedicated ports. 2. Moves the data files out of `tests/testdata/npm/registry` to `tests/registry/npm`. |