-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
83 lines (73 loc) · 2.41 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
module.exports = function(grunt) {
require('time-grunt')(grunt);
var config = require("./.screeps.json")
var branch = grunt.option('branch') || config.branch;
var email = grunt.option('email') || config.email;
var password = grunt.option('password') || config.password;
var ptr = grunt.option('ptr') ? true : config.ptr
var private_directory = grunt.option('private_directory') || config.private_directory;
grunt.loadNpmTasks('grunt-screeps')
grunt.loadNpmTasks('grunt-contrib-clean')
grunt.loadNpmTasks('grunt-contrib-copy')
grunt.loadNpmTasks('grunt-rsync')
grunt.initConfig({
screeps: {
options: {
email: email,
password: password,
branch: branch,
ptr: ptr
},
dist: {
src: ['dist/*.js']
}
},
clean: {
dist: ['dist/*'],
steam: [private_directory+'*']
},
copy: {
screeps: {
files: [{
expand: true,
cwd: 'src/',
src: '**',
dest: 'dist/',
filter: 'isFile',
rename: function (dest, src) {
// Change the path name utilize underscores for folders
return dest + src.replace(/\//g,'_');
}
}],
},
private: {
files: [{
expand: true,
cwd: 'src/',
src: '**',
dest: private_directory,
filter: 'isFile',
rename: function (dest, src) {
// Change the path name utilize underscores for folders
return dest + src.replace(/\//g,'_');
}
}],
}
},
rsync: {
options: {
args: ["--verbose", "--checksum"],
exclude: [".git*"],
recursive: true
},
private: {
options: {
src: '.\\dist\\',
dest: private_directory,
}
}
},
});
grunt.registerTask('default', ['clean:dist', 'copy:screeps', 'screeps']);
grunt.registerTask('private', ['clean:dist', 'copy:screeps', 'clean:steam', 'copy:private']);
}