1.1.1 • Published 9 years ago

gulp-node-webkit-builder v1.1.1

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

gulp-node-webkit-builder

npm.io

Help developers build their own node-webkit apps for different platforms such as win, mac and linux with gulp.

Information

Usage

var builder = require('gulp-node-webkit-builder');

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

This will pass all the files into node-webkit-builder, and generate the node-webkit app.

It's better you use node-webkit-builder directly, since nothing special here but a simple wrapper.

Options

All the options will be passed into node-webkit-builder directly except files.

For detail description, see: Options

LICENSE

MIT License