Minimal repro repository for parcel-bundler/parcel#4332
NPM install both root and local NPM library
cd src
npm install
cd ../vendor/myLib
npm install
Run watch on both root and local NPM library on separate shells
cd src
npm run watch
cd ../vendor/myLib
npm run my.lib.watch
- Apply changes to the code inside the library (src/index.ts)
- Observe the lack of change notification in the first watch, even when stopping+restart the watc
The issue is the same when using "local" NPM dependencies like this :
{
"dependencies": {
"@my/lib": "file:../vendor/myLib"
}
}