1.4.0 • Published 9 years ago
gulp-nw-builder v1.4.0
gulp-nw-builder
Help developers build their own nw.js apps for different platforms such as win, mac and linux with gulp.
Information
Usage
var builder = require('gulp-nw-builder');
gulp.task('scripts', function() {
return gulp.src(['./resources/**/*'])
.pipe(builder({
version: 'v0.12.2',
platforms: ['win64']
}));
});This will pass all the files into nw-builder, and generate the nw.js app.
It's better you use nw-builder directly, since nothing special here but a simple wrapper.
Options
All the options will be passed into nw-builder directly except files.
For detail description, see: Options
Additionally, quiet: true will disable all logging to gulp.
