extplug-cli

1.5.0 • Public • Published

extplug-cli

CLI for easily bundling ExtPlug plugins.

Installation

npm install --global extplug-cli

Usage

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

Babel Preset

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"
  }
}

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i extplug-cli

Weekly Downloads

3

Version

1.5.0

License

MIT

Last publish

Collaborators

  • goto-bus-stop