-
Notifications
You must be signed in to change notification settings - Fork 59
Description
Howdy! I discovered @manypkg/get-packages while browsing the changesets source code and was disappointed to find it currently doesn’t support Deno.
I’m opening this issue to discuss whether the maintainers would consider adding support for Deno and JSR in a future release. With the Deno CLI now in the 2.2 cycle, it’s evolved significantly—now capable of managing monorepo workspaces, among other things.
Deno implements nearly every builtin node:*
module, and NPM packages are directly accessible via the npm:
specifier prefix. It also supports using package.json
files interchangeably with deno.json
files to define package configurations.
That said, many JSR package authors (myself included) opt for deno.json
for various reasons. As a result, myself and others are currently unable to take full advantage of this tooling or other ecosystem tools that depend on it (for example, changesets). However, even if I switched all my packages to use package.json
, I’m not sure the tool would work well with Deno as it stands—since it essentially assumes it’s operating in a Node environment.
I’m eager to hear your thoughts and discuss potential solutions.
Thank you for your time and consideration!