-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGruntfile.js
67 lines (60 loc) · 2 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
module.exports = function(grunt) {
var target = process.env.npm_config_target || 'all';
var platforms;
if (target == 'all') {
platforms = ['win32', 'win64', 'linux64'];
} else {
platforms = [target];
}
console.log('Running Grunt tasks with target "' + target + '" for platforms:', platforms);
// Build up array of destinations for Twister deamon files
var destinations = {files: []};
platforms.forEach(function (platform) {
destinations.files.push({
expand: true,
cwd: './twister-data/' + platform,
src: ['twister-data/**'],
dest: './builds/Twisting/' + platform + '/'
});
});
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
nodewebkit: {
options: {
platforms: platforms,
version: 'v0.12.2',
buildDir: './builds',
winIco: './src/icon.ico'
},
src: ['./src/**/*', '!./src/twister-data/**/*', '!./src/*.exe', '!./src/*.pak', '!./src/*.dll']
},
copy: {
twister: destinations
},
less: {
development: {
files: {
"./src/app/styles/style.css": "./src/app/styles/main.less"
}
}
},
auto_install: {
subdir: {
options: {
cwd: 'src',
stdout: true,
stderr: true,
failOnError: true,
}
}
},
});
grunt.loadNpmTasks('grunt-node-webkit-builder');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-auto-install');
grunt.registerTask('build', ['less', 'nodewebkit', 'copy:twister']);
grunt.registerTask('compile', ['less']);
grunt.registerTask('postinstall', ['auto_install', 'less']);
};