Support Deno package manager #28531
Ionaru
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Since Deno 2.0.0 (released 2024.10.09), there is now a
deno install
command similar tonpm install
,bun install
andyarn install
.It creates a
deno.lock
file and saves the node_modules in a slightly different way than npm does, putting most dependencies inside anode_modules/.deno
folder.More info here: https://docs.deno.com/runtime/reference/cli/install/
Like
create-nx-workspace --packageManager bun
and... --pm yarn
. I propose a--packageManager deno
option to use the Deno package manager.Note that when executing through NX, it may need the
--allow-scripts
flag (and possibly other permissions) to run lifecycle scripts.Beta Was this translation helpful? Give feedback.
All reactions