blacksonic/angular2-esnext-starter

View on GitHub
tasks/server_start.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';
let nodemon = require('gulp-nodemon');

module.exports = function() {
  return function () {
    return nodemon({
      script: 'server/index.js',
      watch: ['server'],
      ignore: ['node_modules/**'],
      ext: 'js html',
      env: {
        'NODE_ENV': 'development'
      }
    });
  };
};