README
@citycide/babel-standalone ·
A smaller customized version of
@babel/standalone
.
The official @babel/standalone
has grown very large in recent releases,
at almost 6 MB minified. For use cases like param.macro
's
online playground where only a subset of transforms is
needed, that size isn't ideal. @citycide/babel-standalone
is reduced to
about 1.73 MB minified.
This project is based on the effort by @joncasey
on my-babel-standalone
.
usage
You can use the minified source directly on a page using unpkg:
<script src="https://unpkg.com/@citycide/babel-standalone"></script>
or by installing locally (i.e. for bundling):
# using yarn
yarn add @citycide/babel-standalone
# using npm
npm i @citycide/babel-standalone
development
- Clone the repo:
git clone https://github.com/citycide/babel-standalone.git
- Move into the new directory:
cd babel-standalone
- Install dependencies:
yarn
ornpm install
- Build from source:
yarn build
ornpm run build
Any plugins needed in the final bundle should be added as dependencies, where
the update script will pull them from automatically. This update script is run
before every build or can be manually run with yarn update
or npm run update
.
The version of the package itself is tied to the version of @babel/preset-env
used, so both can and should be updated by editing only the @babel/preset-env
version in package.json
. Running yarn update
will then fetch the new version
and make this package's version match it.
see also
param.macro
– a babel macro for compile-time partial application in JavaScript@babel/standalone
– the official standalone Babel packagemy-babel-standalone
– another minimal version by @joncasey
license
MIT © Bo Lingen / citycide
Based on code also under MIT © @joncasey