forked from mchristopher/PokemonGo-DesktopMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
33 lines (27 loc) · 785 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
26
27
28
29
30
31
32
33
var path = require('path');
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
grunt.loadNpmTasks('grunt-electron-installer');
grunt.initConfig({
electron: {
macosBuild: {
options: {
name: 'Fixture',
dir: 'app',
out: 'dist',
platform: 'darwin',
arch: 'x64'
}
}
},
'create-windows-installer': {
ia32: {
appDirectory: path.join(path.resolve(), 'pgowin32'),
outputDirectory: path.join(path.resolve(), 'win32output'),
title: 'Pokemon GO Live Map',
exe: "Pokemon GO Live Map.exe"
}
}
});
grunt.registerTask('default', ['electron']);
};