@db-scripts/bundle

0.4.1 • Public • Published

@db-scripts/bundle

Installation

npm i -D @db-scripts/bundle

Usage

Add this to your package.json

{
  "scripts": {
    "build": "db-scripts-bundle --size-snapshot",
  }
}

This will create an ES Module build, a commonjs build, a umd build and an esnext build within a dist folder.

It also will also add a .size-snapshot.json which will tell you the size of your library including all required dependencies.

Typically you want to add these fields to your package.json

{
  "main": "dist/cjs/index.js",
  "module": "dist/es/index.js",
  "sideEffects": false,
  "files": [
    "dist"
  ],
}

Check out the docs for sideEffects to make sure you understand what this field implies.

The bundling process uses plain babel for the esm and commonjs builds. You can find the reasoning here.

Thanks

The scripts are very heavily inspired by kcd-scripts. Thanks a lot for sharing your code Kent!

Package Sidebar

Install

npm i @db-scripts/bundle

Weekly Downloads

1

Version

0.4.1

License

ISC

Unpacked Size

10.4 kB

Total Files

9

Last publish

Collaborators

  • danielberndt