forked from mchristopher/PokemonGo-DesktopMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
25 lines (19 loc) · 794 Bytes
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
var path = require('path');
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
grunt.loadNpmTasks('grunt-electron-installer');
grunt.initConfig({
'create-windows-installer': {
ia32: {
appDirectory: path.join(path.resolve(), 'Pokemon GO Live Map-win32-ia32'),
outputDirectory: path.join(path.resolve(), 'win32output'),
title: 'Pokemon GO Live Map',
exe: "Pokemon GO Live Map.exe",
setupIcon: path.join(path.resolve(), 'pokemon.ico'),
iconUrl: 'https://raw.githubusercontent.com/mchristopher/PokemonGo-DesktopMap/master/pokemon.ico',
loadingGif: path.join(path.resolve(), 'installing.gif')
}
}
});
grunt.registerTask('default', ['create-windows-installer']);
};