gulp-nw-builder icon indicating copy to clipboard operation
gulp-nw-builder copied to clipboard

Help developers build their own nw.js apps for different platforms such as win, mac and linux with gulp.

gulp-nw-builder

NPM version

Help developers build their own nw.js apps for different platforms such as win, mac and linux with gulp.

Information

Packagegulp-nw-builder
Description A simple wrapper for `nw-builder`
Node Version >= 7.0

Usage

var builder = require('gulp-nw-builder');

gulp.task('scripts', function() {
  return gulp.src(['./resources/**/*'])
    .pipe(builder({
        version: '0.20.1',
        platforms: ['osx64']
     }));
});

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.

LICENSE

MIT License