FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

nwjs/grunt-nw-builder: Build NW.js applications for Mac, Windows and Linux using Grunt · GitHub

Repository files navigation

grunt-nw-builder

Installation

Install package via npm:

npm install grunt-nw-builder

Refer to nw-builder's Installation Guide for more options.

Usage

nwjs.src is passed into options.srcDir internally. Hence you don't need to specify nwjs.srcDir.

When globbing is enabled:

grunt.initConfig({
  nwjs: {
    get: {
      options: {
        mode: "build",
-       srcDir: "./package.json ./app/**/*",
      },
+     src: [ "./package.json", "./app/**/*" ],
    },
  },
});

When globbing is disabled:

grunt.initConfig({
  nwjs: {
    get: {
      options: {
        mode: "get",
-       srcDir: "./app",
        glob: false,
      },
+     src: "./app",
    },
  },
});

Refer to nw-builder's docs to learn what options to input.

About

Build NW.js applications for Mac, Windows and Linux using Grunt

Resources

Stars

793 stars

Watchers

27 watching

Forks

Releases

Packages

Used by

Contributors

Languages


Back | FazBrowse Home | New Git URL