mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
Add macos specific nodewebkit configuration
This commit is contained in:
parent
d962217f90
commit
c074217047
25
Gruntfile.js
25
Gruntfile.js
@ -217,15 +217,24 @@ module.exports = function(grunt) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
nodewebkit: {
|
nodewebkit: {
|
||||||
options: {
|
windows : {
|
||||||
version : "0.11.5",
|
options: {
|
||||||
build_dir: './dest/desktop/', // destination folder of releases.
|
version : "0.11.5",
|
||||||
mac: true,
|
build_dir: './dest/desktop/', // destination folder of releases.
|
||||||
win: true,
|
win: true,
|
||||||
linux32: true,
|
linux32: true,
|
||||||
linux64: 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/"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user