1.1.0 • Published 8 years ago

browserify-build-status v1.1.0

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

Browserify Build Status

Codeship Status for tqc/browserify-build-status

Display browserify build status on the output page.

##Usage:

var statusReporter = require("browserify-build-status");
var b = browserify(...)
// plugin adds error handlers to the browserify object
b.plugin(statusReporter, opts);
b = b.bundle()
// writeFile sets the "build incomplete" message and waits for 
// browserify to finish before writing either the finished build 
// output or an error message.
b = b.pipe(statusReporter.writeFile("app.js"));

Default options

{
    // selector for the element that will be updated with any error message
    selector: "body"
}

Demo