From c0742170476c6e9c0512822045507b63ca0d8643 Mon Sep 17 00:00:00 2001 From: juliandescottes Date: Sun, 9 Aug 2015 01:22:25 +0200 Subject: [PATCH] Add macos specific nodewebkit configuration --- Gruntfile.js | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index c7b10200..f52e29dc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -217,15 +217,24 @@ module.exports = function(grunt) { } }, nodewebkit: { - options: { - version : "0.11.5", - build_dir: './dest/desktop/', // destination folder of releases. - mac: true, - win: true, - linux32: true, - linux64: true + windows : { + options: { + version : "0.11.5", + build_dir: './dest/desktop/', // destination folder of releases. + win: true, + linux32: true, + linux64: true + }, + src: ['./dest/**/*', "./package.json", "!./dest/desktop/"] }, - src: ['./dest/**/*', "./package.json", "!./dest/desktop/"] + macos : { + options: { + platforms : ['osx64'], + version : "0.10.5", + build_dir: './dest/desktop/' + }, + src: ['./dest/**/*', "./package.json", "!./dest/desktop/"] + } } });