flybondi/ramda-land

Make library tree shakeable

Closed this issue ยท 1 comments

As reported by BundlePhobia, ramda-land is not tree-shakeable.

Useful resources:

TLDR;

[...] in order to take advantage of tree shaking, you must...

  • Use ES2015 module syntax (i.e. import and export).
  • Ensure no compilers transform your ES2015 module syntax into CommonJS modules.
  • Add a "sideEffects" property to your project's package.json file.
  • Use the production mode configuration option to enable various optimizations including minification and tree shaking.

๐ŸŽ‰ This issue has been resolved in version 4.0.5 ๐ŸŽ‰

The release is available on:

Your semantic-release bot ๐Ÿ“ฆ๐Ÿš€