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
loom did nothing under fnm / nvm / volta (any symlinked global install). Every command
(loom, loom start, loom status, …) exited silently with no output when Loom was installed under
a Node version manager that symlinks the global package directory. The CLI's entry-point check
compared the launcher's path against the module's own URL; those diverge when the global dir is a
symlink (Node resolves the real path while the launcher passes the symlinked one — plus Windows
path-casing differences), so the CLI body never ran. The check now realpath-normalizes both sides.
Update with npm i -g loomctl@latest.