CLI for easily bundling ExtPlug plugins.
npm install --global extplug-cli
extplug bundle /path/to/my/plugin.js bundled-plugin.js
extplug [options] [command]
Commands:
init Scaffold a new plugin in the current directory.
bundle [options] <entry> [output] Bundle a plugin.
watch <entry> <output> Bundle a plugin. Rebuild automatically when source files change.
Options:
-h, --help output usage information
-V, --version output the version number
The Babel preset used by the ExtPlug CLI is available as extplug-cli/babel
.
This is useful if you need to transpile your code outside of bundling, like when
running tests.
For example, with Ava:
// .babelrc
{
"presets": ["extplug-cli/babel"]
}
// package.json
{
"ava": {
"require": ["babel-register"],
"babel": "inherit"
}
}