0.0.2 • Published 5 years ago

multiple-entry-points v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

multiple-entry-points

Shipping a library? What about tree-shaking - ship it in es-modules format!

What about nodejs? ship it in csj format!

So yes - all good libraries are producing two bundles

in your package.json you might define

{
  "main": "dist/es5/index.js", // for nodejs
  "jsnext:main": "dist/es2015/index.js", // for "next" js
  "module": "dist/es2015/index.js", // for "esmodules"
  "types": "dist/es5/index.d.ts", // yeah, and types
}

But sometimes you have to create a multiple entry points, for a better tree-shaking, a better scoping, and so on. Dont forget - Tree Shaking is not working in dev mode, so - if you want to add a React bindings to your generic library - you have to create or separate package, or a separate entry point.

Here is the problem - how to ship that entry point in two bundles, and add types? Usually separate entry points are just js files, which are pointing to a right place in dist, or directories, which contains already transpiled code.

Dam it!

Solution

  • for every entry point create a directory
  • place compact package.json into the every directory, which may separate bundles _as usual.

The problem of entry points - package.json of your project might define only one, the main, entry point. Here is the solution - create more package.jsons, a one per every entry.

Problem solved. For any bundler or even browser - package.json is a STANDARD everyone could understand.