nodules
nodules copied to clipboard
Overlays Issue
I have a proof of concept package that I believe demonstrates an issue with the 'overlays' functionality
For this mapping: { "mappings": { "main": "./lib/main" }, "overlay": { "node": { "mappings": { "enginetest": "./engines/node/test" } } } }
the "enginetest" attempts to be resolved at one level ABOVE the root of the package (where the package.json is located)
My package.json is on /working/poc require("engines") in /working/poc/main.js looks for "test.js" in /working/engines/node/test.js and receives a no such file or directory error