Created
February 15, 2016 17:38
-
-
Save bradmartin/425eb0889de9787bec2b to your computer and use it in GitHub Desktop.
grunt-electron-installer testing...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function (grunt) { | |
grunt.initConfig({ | |
'create-windows-installer': { | |
x64: { | |
appDirectory: '/tmp/build/my-app-64', | |
outputDirectory: '/tmp/build/installer64', | |
authors: 'My App Inc.', | |
exe: 'myapp.exe' | |
}, | |
ia32: { | |
appDirectory: '/tmp/build/my-app-32', | |
outputDirectory: '/tmp/build/installer32', | |
authors: 'My App Inc.', | |
exe: 'myapp.exe' | |
} | |
} | |
}); | |
grunt.loadNpmTasks('grunt-electron-installer'); | |
grunt.registerTask('create-windows-installer', ['create-windows-installer']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment