I don't know exactly when but npm started to embrace workspaces as such. Because of that node_modules is in root repo and not in individual packages. npm i doesn't install node_modules in sequence's directory. If we pack a sequence from this repo and it has dependencies defined in package.json it simply won't work.
I don't know exactly when but
npm
started to embrace workspaces as such. Because of thatnode_modules
is in root repo and not in individual packages.npm i
doesn't installnode_modules
in sequence's directory. If we pack a sequence from this repo and it has dependencies defined in package.json it simply won't work.