apeman-task-browserify

apeman task to execute browserify

Usage no npm install needed!

<script type="module">
  import apemanTaskBrowserify from 'https://cdn.skypack.dev/apeman-task-browserify';
</script>

README

apeman-task-browserify

Build Status Code Climate Code Coverage npm Version JS Standard

apeman task to execute browserify

Installation

$ npm install apeman-task-browserify --save-dev

Usage

  1. Define a task within Apemanfile.js
  2. Call the task via apeman task command.

Apemanfile.js

/** This is an example Apemanfile to use apeman-task-browserify */

'use strict'

module.exports = {
  $pkg: { /* ... */ },
  $tasks: {
    // Define your own task.
    'react:browserify': require('apeman-task-browserify')(
      'browser/index.js',
      {
        // Options
      }
    )
  }
}

Then,

$ apeman task react:browserify

Signature

apemanTaskBrowserify(options) -> function

apeman task to run browserify

Args
Name Type Default Description
options object Optional settings.

License

This software is released under the MIT License.

Links