You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a Node.js (npm) environment, running npm install with workspaces specified in package.json creates symbolic links to the workspaces in the node_modules directory. However, in Deno, even when nodeModulesDir: auto | manual and workspace are configured in deno.json, or when workspaces are defined in package.json, running deno install does not create symbolic links to the workspaces in the node_modules directory.
This leads to issues where certain npm libraries attempt to reference the workspaces (packages) within the node_modules directory but fail, resulting in errors.
In a Node.js (npm) environment, running
npm install
withworkspaces
specified inpackage.json
creates symbolic links to the workspaces in thenode_modules
directory. However, in Deno, even whennodeModulesDir: auto | manual
andworkspace
are configured indeno.json
, or whenworkspaces
are defined inpackage.json
, runningdeno install
does not create symbolic links to the workspaces in thenode_modules
directory.This leads to issues where certain npm libraries attempt to reference the workspaces (packages) within the
node_modules
directory but fail, resulting in errors.The text was updated successfully, but these errors were encountered: