mirror of
https://github.com/Raghu-Ch/ProductsAPI.git
synced 2026-02-10 04:43:02 -05:00
16 lines
380 B
JavaScript
16 lines
380 B
JavaScript
var gulp = require('gulp');
|
|
var nodemon = require('gulp-nodemon');
|
|
|
|
gulp.task('default', function () {
|
|
nodemon({
|
|
script: 'server.js',
|
|
ext: 'js',
|
|
env: {
|
|
PORT: 8000
|
|
},
|
|
ignore: ['./node_modules/**']
|
|
})
|
|
.on('restart', function () {
|
|
console.log('Restarting..');
|
|
});
|
|
}); |