build-esm v4.2.2
build-esm
Compile an ES Module for release on npm
Installing
Install it locally to your project by running:
yarn add --dev build-esmManual Deployment
Add build-esm as a build script to package.json:
{
"name": "project",
"scripts": {
"build": "build-esm"
}
}Then, run:
yarn buildbuild-esm copies all files that would be published by npm publish or
yarn publish (accounting for .npmignore and files in package.json) into
the dist directory, compiling all JavaScript files (with the .js extension)
using Babel. All of the standard ways of configuring Babel (through the babel
key in package.json and .babelrc) apply.
The package can be published by running:
npm publish distContinuous Deployment
When publishing from a continuous integration service, build-esm can compile
files in-place, allowing npm publish without arguments to work as desired.
To enable in-place compilation, add build-esm as a prepack script to
package.json:
{
"name": "project",
"scripts": {
"prepack": "build-esm"
}
}Note that prepack is only supported in npm version 5 and greater.
Here are some example deployment workflows:
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago