-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathGruntfile.js
62 lines (53 loc) · 1.53 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
var fs = require("fs");
var path = require("path");
module.exports = function(grunt) {
function getPrivateSettings(grunt) {
var location = "./screeps.js";
if (!grunt.file.exists(location)) {
console.log("Can't find ./screeps.js, setting up...");
grunt.file.write(location, fs.readFileSync(location+'.dist'));
return false;
} else {
return require(location);
}
}
require('load-grunt-tasks')(grunt);
grunt.loadNpmTasks('grunt-screeps');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.initConfig({
watch: {
scripts: {
files: ['src/*.js'],
tasks: ['babel', 'screeps']
}
},
babel: {
options: {
stage: 0
},
dist: {
files: [
{
expand: true,
cwd: 'src/',
src: ['*.js', '**/*.js'],
dest: 'dist/'
}
]
}
},
screeps: {
options: {},
dist: {
src: ['dist/*.js']
}
}
});
var settings = getPrivateSettings(grunt);
if (settings === false) {
console.log("screeps setting file created. Please edit ./screeps.js with your settings, and re-run grunt");
return;
}
grunt.config.merge(settings);
grunt.registerTask('default', ['babel', 'screeps', 'watch']);
};