-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGruntfile.js
64 lines (47 loc) · 1.72 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
files: ['client/**/*.js','server/**/*.js'],
options: {
force: 'true',
jshintrc: '.jshintrc',
ignores: [
'client/lib/**/*.js'
]
}
},
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-cssmin');
// grunt.registerTask('server-dev', function (target) {
// Running nodejs in a different process and displaying output on the main console
// var nodemon = grunt.util.spawn({
// cmd: 'grunt',
// grunt: true,
// args: 'nodemon'
// });
// nodemon.stdout.pipe(process.stdout);
// nodemon.stderr.pipe(process.stderr);
// grunt.task.run([ 'watch' ]);
// });
////////////////////////////////////////////////////
// Main grunt tasks
////////////////////////////////////////////////////
// grunt.registerTask('log', function() {
// console.log('==============================================');
// console.log('Task is running...');
// console.log('==============================================');
// });
// grunt.registerTask('default', ['test', 'build', 'upload']);
grunt.registerTask('default', ['jshint']);
// grunt.registerTask('build', ['concat', 'uglify', 'cssmin']);
// grunt.registerTask('upload', function(n) {
// if(grunt.option('prod')) grunt.task.run([ 'shell:prodServer' ]);
// else grunt.task.run([ 'server-dev' ]);
// });
// grunt.registerTask('deploy', ['test', 'build', 'upload']);
};