fly-browserify

1.0.0 • Public • Published

Browserify plugin for Fly.

npm package

Usage

Check out the documentation to see the available options.

Install

npm install -D fly-browserify

Example

ES6

export default function* () {
  yield this.clear("build")
  yield this
    .source(paths.scripts)
    .browserify({ transform: [require("reactify")] })
    .concat("bundle.js")
    .target("lib")
}

Earl Grey

require: earlify
provide: default
default = *->
  yield this.clear("build")
  yield chain this:
    @source: paths.scripts
    @browserify: { transform = {earlify} }
    @concat: "bundle.js"
    @target: .lib

License

MIT © Jake Russo et al

Package Sidebar

Install

npm i fly-browserify

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • lukeed
  • madcapjake