如何防止gulp-notify在Windows中破坏gulp-watch? [英] How do I prevent gulp-notify from breaking gulp-watch in Windows?

查看:187
本文介绍了如何防止gulp-notify在Windows中破坏gulp-watch?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 gulp-notify 插件。这是我如何在gulpfile.js中实现它的一个例子(你可以看到我也使用了gutil和livereload,我不知道他们是否有任何影响因素,但是如果他们这样做,请告诉我。)


$ b $

  gulp.task('js',function(){
return gulp.src('./ dev / ('error',gutil.log))
.pipe(gulp.dest('./ build / script'/ *。coffee')
.pipe(coffee({bare:true} ));
.pipe(notify('Coffeescript compile successful'))
.pipe(livereload(server));
});

这个插件适用于OS X和Linux。在没有通知功能的Windows上,它会返回一个错误并打破gulp-watch插件。这是一个我如何设置gulp-watch的例子:

  gulp.task('watch',function(){
server.listen(35729,function(err){
if(err){
return console.log(err);
}
gulp.watch('。 /dev/scripts/*.coffee',['js']);
});
});

因此,我在文档中读到了gulp-pipe插件可以帮助我不会在打断gulp-watch时在Windows上,但我找不到如何在像这样的设置中使用它的例子。 结合使用 gulp-if 插件 os 节点模块来确定您是否在Windows上,然后排除 gulp-notify ,如下所示:

  var _if = require ( '吞掉-如果'); 

// ...

//从http://stackoverflow.com/questions/8683895/variable-to-detect-operating-system-in-node-脚本
var isWindows = /^win/.test(require('os')。platform());

...

//使用像这样:
.pipe(_if(!isWindows,notify('Coffeescript compile successful')))


I am using the gulp-notify plugin. This is an example of how I'm implementing it in a gulpfile.js ( You can see I'm using gutil and livereload as well. I don't know if they play any factors, but let me know if they do.)

gulp.task('js', function() {
  return gulp.src('./dev/scripts/*.coffee')
    .pipe(coffee({bare: true}).on('error', gutil.log))
    .pipe( gulp.dest('./build/js'))
    .pipe(notify('Coffeescript compile successful'))
    .pipe(livereload(server));
});

This plugin works on OS X and Linux. On Windows, which doesn't have a notification feature, it returns an error and breaks the gulp-watch plugin. This is an example of how I have gulp-watch setup:

gulp.task('watch', function () {
  server.listen(35729, function (err) {
    if (err) {
      return console.log(err);
    }
    gulp.watch('./dev/scripts/*.coffee',['js']);
  });
});

So, I read in the documentation the gulp-pipe plugin can help me not break gulp-watch when on Windows, but I can't find an example of how I could use it in a setup like this.

解决方案

You can use the gulp-if plugin in combination with the os node module to determine if you are on Windows, then exclude gulp-notify, like so:

var _if = require('gulp-if');

//...

// From http://stackoverflow.com/questions/8683895/variable-to-detect-operating-system-in-node-scripts
var isWindows = /^win/.test(require('os').platform());

//...

     // use like so:
    .pipe(_if(!isWindows, notify('Coffeescript compile successful')))

这篇关于如何防止gulp-notify在Windows中破坏gulp-watch?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆