We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the problem with https://github.com/wurdcms/wurd-web/blob/master/package.json#L7 is webpack will use this bundle https://github.com/wurdcms/wurd-web/blob/master/dist/wurd.js that already packs marked, so it can duplicate marked if the app is also using marked in its dependencies
marked
We should put marked in peerDependencies, and let webpack pick the ESM build by changing the main entry in package.json
Note: it should also be easy to avoid the get-property-vaue dependency as it's just
const get = (o, path) => path.split('.').reduce((obj, k) => obj[k], o);
The text was updated successfully, but these errors were encountered:
Fix wurdcms#7 let bundlers use ES build
ff0725b
76f4529
No branches or pull requests
the problem with https://github.com/wurdcms/wurd-web/blob/master/package.json#L7 is webpack will use this bundle https://github.com/wurdcms/wurd-web/blob/master/dist/wurd.js that already packs
marked
, so it can duplicate marked if the app is also using marked in its dependenciesWe should put marked in peerDependencies, and let webpack pick the ESM build by changing the main entry in package.json
Note: it should also be easy to avoid the get-property-vaue dependency as it's just
The text was updated successfully, but these errors were encountered: