1.0.2 • Published 9 years ago
maybe-bundle v1.0.2
maybe-bundle
Let maybe-bundle plugin for watchify, provides to re bundle only when files changed.
install
npm install maybe-bundleusage
Programmatic API
In your task runner like gulp, add this plugin to browserify:
var b = browserify({
entries: ['entry.js'],
cache: {},
packageCache: {},
plugin: [watchify],
})
.plugin('maybe-bundle', {
label: 'LABEL' // optional. distinction with other skip messages
});Command Line
$ watchify entry.js -v -p [maybe-bundle --label LABEL] > bundle.jsrunning demo
first time bundle is output bundle file.
567 bytes written to bundle.js (0.12 seconds)bundle from the second time, skip re bundle if no change in the files.
*** LABEL: skip write to bundle file ***license
MIT
