-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gruntfile.js
78 lines (74 loc) · 2.16 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
'use strict';
module.exports = function( grunt ) {
// load all grunt tasks
require( 'load-grunt-tasks' )( grunt );
var reloadPort = 35730;
grunt.initConfig( {
pkg: grunt.file.readJSON( 'package.json' ),
// development-mode that runs both nodemon and watch concurrently
// to take care of automatically rebooting server and reloading page
concurrent: {
develop: {
tasks: [ 'nodemon', 'watch' ],
options: {
logConcurrentOutput: true
}
}
},
nodemon: {
dev: {
script: './app.js',
options: {
watch: [ 'app', 'config' ],
env: {
NODE_ENV: 'development',
DEBUG: '*, -express:*, -send'
}
}
}
},
watch: {
options: {
nospawn: true,
livereload: reloadPort
},
js: {
files: [
'app.js',
'app/**/*.js',
'config/*.js'
],
tasks: [ 'develop' ]
},
views: {
files: [
'app/views/*.jade',
'app/views/**/*.jade'
],
options: {
livereload: reloadPort
}
}
},
sass: {
compile: {
files: {
'public/css/error.css': 'app/views/style/error.scss',
'public/css/main.css': 'app/views/style/main.scss'
}
}
},
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: [ 'test/**/*.spec.js' ]
}
},
} );
grunt.registerTask( 'test', [ 'mochaTest' ] );
grunt.registerTask( 'build', [ 'sass' ] );
grunt.registerTask( 'develop', [ 'concurrent:develop' ] );
grunt.registerTask( 'default', [ 'jshint', 'build' ] );
};