-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGruntfile.js
More file actions
29 lines (27 loc) · 818 Bytes
/
Gruntfile.js
File metadata and controls
29 lines (27 loc) · 818 Bytes
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
module.exports = function(grunt) {
grunt.initConfig({
nodewebkit: {
options: {
app_name: 'colt',
app_version: '2.0.0',
build_dir: './build', // Where the build version of my node-webkit app is saved
mac: true,
mac_icns: './colticon.icns',
win: true,
linux32: false,
linux64: false,
keep_nw: true,
zip: false
},
src: ['../colt-ui/**/*',
'../colt-ui/**/.bin/**',
'!../colt-ui/.git/**',
'!../colt-ui/*.colt',
'!../colt-ui/projects/**',
'!../colt-ui/*.dll', '!../colt-ui/*.exe', '!../colt-ui/*.pak','!../colt-ui/*.app',
'!../colt-ui/*.iml'] // Your node-webkit app
}
});
grunt.loadTasks('tasks');
grunt.registerTask('default', ['nodewebkit']);
};