-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
45 lines (35 loc) · 928 Bytes
/
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
"use strict";
var path = require('path');
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
var pkg = grunt.file.readJSON("package.json");
grunt.initConfig({
pkg: pkg,
pkgVersion: "<%= pkg.version %>",
watch: {
web: {
options: {
livereload: 29008
},
files: ['*.html', '*.js', '*.css'],
},
express: {
files: [ 'backend/*.js', '.env', 'package.json' ],
tasks: [ 'express:dev' ],
options: {
spawn: false // for grunt-contrib-watch v0.5.0+, "nospawn: true" for lower versions. Without this option specified express won't be reloaded
}
}
},
express: {
dev: {
options: {
script: 'backend/main.js',
background: true,
port: 9008,
}
}
},
});
grunt.registerTask('default', ['express:dev', 'watch', 'keepalive']);
};