nwjs / grunt-nw-builder

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

Home Page:https://www.npmjs.com/package/grunt-nw-builder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unable to download nodewebkit

estvmachine opened this issue · comments

With my code already i did a nodewebkit version with 'node-webkit-v0.8.6-win-ia32' (download page node-webkit ) because my app works in Node v0.10.x, now i want to do that with grunt but the task try to download the last version and additionally fails.

image

My code:

gruntfile.js

grunt.initConfig({
   nodewebkit: {
        options: {
            platforms: ['win'],
            buildDir: './webkitbuilds', // Where the build version of my node-webkit app is saved
        },
        src: ['./dest/**/*'] // Your node-webkit app
      }
});

The package.json

{
  "name": "webrandomprod",
  "main": "index.html",
  "node-main": "server.js",
  "description": "A MEAN application for module of Production of RANDOM ERP",
  "version": "0.0.1",
  "author": "Stevmachine",
  "engines": {
    "node": "0.10.x",
    "npm": "1.4.x"
  },
  "window": {
    "title": "node-webkit demo",
    "icon": "link.png",
    "toolbar": true,
    "frame": false,
    "width": 800,
    "height": 500,
    "position": "mouse",
    "min_width": 400,
    "min_height": 200,
    "max_width": 800,
    "max_height": 600
  },
  "webkit": {
    "plugin": true
  }
}

👍 me too

Thanks for reporting... We'll track this bug at nwutils/nw-builder#222