Use fork of grunt-nw-builder and update nwjs versions in grunt

This commit is contained in:
Ayushman Chhabra 2022-02-12 00:37:43 +05:30
parent 9bbc9d241d
commit bb4c4fe666
2 changed files with 5 additions and 5 deletions

View File

@ -273,7 +273,7 @@ module.exports = function(grunt) {
windows : {
options: {
downloadUrl: 'https://dl.nwjs.io/',
version : "0.19.4",
version : "0.49.1",
build_dir: './dest/desktop/', // destination folder of releases.
win: true,
linux32: true,
@ -286,7 +286,7 @@ module.exports = function(grunt) {
options: {
downloadUrl: 'https://dl.nwjs.io/',
osx64: true,
version : "0.19.4",
version : "0.49.1",
build_dir: './dest/desktop/',
flavor: "normal",
},
@ -328,7 +328,7 @@ module.exports = function(grunt) {
grunt.registerTask('merge-statics', ['concat:js', 'concat:css', 'uglify']);
grunt.registerTask('build', ['clean:prod', 'sprite', 'merge-statics', 'build-index.html', 'replace:mainPartial', 'replace:css', 'copy:prod']);
grunt.registerTask('build-dev', ['clean:dev', 'sprite', 'build-index.html', 'copy:dev']);
grunt.registerTask('desktop', ['clean:desktop', 'default', 'nwjs:windows']);
grunt.registerTask('desktop-win', ['clean:desktop', 'default', 'nwjs:windows']);
grunt.registerTask('desktop-mac', ['clean:desktop', 'default', 'nwjs:macos']);
grunt.registerTask('desktop-mac-old', ['clean:desktop', 'default', 'replace:desktop', 'nwjs:macos_old']);

View File

@ -28,11 +28,12 @@
"preversion": "grunt test build",
"postversion": "git push && git push --tags && npm publish",
"release": "grunt && node ./bin/copy-to-piskel-website",
"build": "grunt desktop",
"build:win": "grunt desktop-win",
"build:mac": "grunt desktop-mac",
"format": "grunt eslint --fix"
},
"devDependencies": {
"@happikitsune/grunt-nw-builder": "3.5.10",
"dateformat": "4.5.1",
"fs-extra": "10.0.0",
"grunt": "1.4.1",
@ -50,7 +51,6 @@
"grunt-jscs": "3.0.1",
"grunt-karma": "4.0.2",
"grunt-leading-indent": "0.2.0",
"grunt-nw-builder": "3.1.0",
"grunt-replace": "2.0.2",
"grunt-spritesmith": "^6.9.0",
"jasmine-core": "3.8.0",