-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
52 lines (47 loc) · 1.44 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
module.exports = function (grunt) {
var config = require("./.screeps_credentials.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;
grunt.loadNpmTasks("grunt-screeps");
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.initConfig({
screeps: {
options: {
email: email,
password: password,
branch: branch,
ptr: ptr,
},
dist: {
src: ["dist/*.js"],
},
},
// Remove all files from the dist folder.
clean: {
dist: ["dist"],
},
// Copy all source files into the dist folder, flattening the folder structure by converting path delimiters to underscores
copy: {
// Pushes the game code to the dist folder so it can be modified before being send to the screeps server.
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, "_");
},
},
],
},
},
});
grunt.registerTask("default", ["clean", "copy:screeps", "screeps"]);
};