0.1.0 • Published 9 years ago

browserifyski v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

browserifyski

Use Browserify + Watch at ease. It's a breeze!

install

With npm do:

npm install browserifyski

Usage

var browserifyski = require('browserifyski');
browserifyski(
	[{
		source: './assets/app.js',
		output_dir: './assets/js',
		output: 'app.bundle.js',
		min: true
	}],
	{
		min: false
	}
);

browserifyski takes two arguments:

  • files array
  • general options

min stands for minify the min option in the files-array overrides the min option in the general options in case you want to override it for single files