Skip to content

Instantly share code, notes, and snippets.

@bradmartin
Created February 15, 2016 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradmartin/425eb0889de9787bec2b to your computer and use it in GitHub Desktop.
Save bradmartin/425eb0889de9787bec2b to your computer and use it in GitHub Desktop.
grunt-electron-installer testing...
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