parcelgraph
Results
2
comments of
parcelgraph
Why so complicated? Something as simple as this should work for the majority of the public API: ``` "exports": { ".": "./index.js", "./*": "./*.js", "./font/*": "./font/*/index.js", "./dist/*": "./dist/*/index.js" }, ```
As an alternative to @lucgagan suggestion above, adding wildcard exports to `package.json` works for me: ```json { ... "exports": { ".": "./index.js", "./*": "./*.js", "./font/*": "./font/*/index.js", "./dist/*": "./dist/*/index.js" } }...