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

Win32 build stuck forever

ananthdp opened this issue · comments

This is my nwjs config file.

module.exports = {
  prod: {
    options: {
      flavor: 'sdk',
      version: '0.70.1',
      zip: true,
      cacheDir: '../../.nwcache',
      platforms: ['win32'],
      winIco: 'outputs/generated/res/images/icon-128.png',
      appName: '<%=manifest.filePrefix%>-<%=manifest.version%>',
      buildDir: 'outputs/publish'
    },
    src: ['outputs/generated/**/*']
  }
};

It's stuck at the create release step. Is there a way to log the steps so that I can figure which step it is exactly stuck at? Also, I have been able to generate the osx64 build the same way pretty easily but no luck with win32.