So here is the simple file layout.
/my-module
..package.json
/my-app
..package.json
I want my-app to install my-module locally. I tried this:
"dependencies": {
"myModule": "../my-module"
}
The option -no-bin-links does not work, it only effects node_modules/bin
It creates a symlink and does not install the node_modules. I would like to do one of two things, not use the symlink and install node_modules, or use the symlink and install the modules. Ideally combined with peerDependencies when using no symlinks.
"myModule": "file:../my-module"?