bundlejs
bundlejs copied to clipboard
Can't load [email protected]
// Click Build for the Bundled, Minified & Compressed package size
export * from "[email protected]";
export { default as jestDefault } from "[email protected]";
results in
✘ [ERROR] Do not know how to load path: http-url:https://unpkg.com/[email protected]/build/default_resolver
http-url:https://unpkg.com/[email protected]/getDefaultResolver:8:32:
8 │ ...tResolver = require(`jest-resolve/build/default_resolver`).default;
╵ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
It seems the issue is that esbuild tries to fetch both of these imports which leads to an error, because default_resolver doesn't exist. I'm looking into potential solutions