本文整理匯總了TypeScript中gulp-nodemon.default函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript default函數的具體用法?TypeScript default怎麽用?TypeScript default使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了default函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: function
gulp.task('default', function () {
nodemon(
{
script: 'app.js',
ext: 'js',
env: {
PORT: 8000
},
ignore: ['./node_modules/**']
})
.on('restart', function () {
console.log('Restarting ...');
})
});
示例2: function
gulp.task('nodemon', ['buildServer','watchYou'], function(){
nodemon({
script: './build/app.js'
}).on('restart', function(){
console.log('nodemon restarted server.js');
})
});
示例3: function
gulp.task('start', function () {
nodemon({ script: 'build/server.js'
, ext: 'html js'
, ignore: ['ignored.js']
, tasks: ['tslint'] })
.on('restart', function () {
console.log('restarted!')
});
});
示例4: nodemon
gulp.task('nodemon', function(callback: any) {
var started = false;
return nodemon({ script: './server/launch.js' }).on('start', start() );
function start() {
// Avoid nodemon being started multiple times
if (!started) {
callback();
started = true;
}
}
});
示例5: nodemon
gulp.task('serve', ['inject'], () => {
var options = {
script: 'app.js',
delayTime: 1,
env: {
'PORT': 5000,
},
watch: jsFiles
}
return nodemon(options)
.on('restart', () => {
console.log('Restating... ')
});
});