This repository has been archived by the owner on Jun 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathgruntfile.js
90 lines (81 loc) · 2.92 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
84
85
86
87
88
89
90
/*
* ===========================================================================
* File: gruntfile.js
* Author: Anthony Del Ciotto
* Desc: TODO
* ===========================================================================
*/
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: {
dist: ['dist/**']
},
copy: {
main: {
files: [
{ expand: true, src: ['index.html'], dest: 'dist/' },
{ expand: true, src: ['res/**'], dest: 'dist/' },
{ expand: true, flatten: true, src: [
'./node_modules/underscore/underscore.js',
'./node_modules/underscore/underscore-min.js',
'./node_modules/underscore/underscore.-min.map',
'./node_modules/peerjs/dist/peer.js',
'./node_modules/peerjs/dist/peer.min.js',
'./node_modules/phaser/build/phaser.js',
'./node_modules/phaser/build/phaser.min.js',
'./node_modules/phaser/build/phaser.map',
'./node_modules/phaser-debug/dist/phaser-debug.js'], dest: 'dist/js/vendor/' }
]
}
},
jshint: {
options: {
jshintrc: true,
force: true
},
files: ['src/**/*.js']
},
browserify: {
options: {
browserifyOptions: {
debug: true,
paths: ['./src'],
},
transform: ['babelify'] //'uglifyify']
},
dist: {
files: {
'dist/js/bundle.js': ['src/client/**/*.js']
}
}
},
express: {
dev: {
options: {
script: 'app.js'
}
}
},
watch: {
options: {
livereload: true
},
client: {
files: ['src/client/**/*.js'],
tasks: ['jshint', 'browserify:dist']
},
server: {
options: {
spawn: false
},
files: ['app.js', 'gruntfile.js', 'src/server/**/*.js', 'src/const.js'],
tasks: ['jshint', 'express', 'browserify:dist', 'watch']
}
}
});
grunt.registerTask('lint', ['jshint']);
grunt.registerTask('build', ['clean', 'copy', 'lint', 'browserify:dist']);
grunt.registerTask('default', ['build', 'express', 'watch']);
};