Commit | Line | Data |
---|---|---|
e99c53fb BA |
1 | var gulp = require('gulp'); |
2 | var nodemon = require('gulp-nodemon'); //reload server on changes | |
3 | ||
4 | var nodemonOptions = { | |
5 | script: 'bin/www', | |
6 | ext: 'js', | |
7 | env: { 'NODE_ENV': 'development' }, | |
8 | verbose: true, | |
9 | watch: ['./','config','utils','routes','models','entities'] | |
10 | }; | |
11 | ||
12 | // TODO: tasks for uglify / sass / use webpack | |
13 | ||
14 | gulp.task('server', function () { | |
15 | nodemon(nodemonOptions) | |
16 | .on('restart', function () { | |
17 | console.log('restarted!') | |
18 | }); | |
19 | }); |