如何忽略 gulp:watch 中的 node_modules 目录?
Posted
技术标签:
【中文标题】如何忽略 gulp:watch 中的 node_modules 目录?【英文标题】:How to ignore node_modules directory from gulp:watch? 【发布时间】:2016-10-15 16:10:10 【问题描述】:我有一个 gulp 脚本,用于监视所有 javascript files
中的代码更改。它看起来像这样:
gulp.watch(['./**/*.jsx', './**/*.js'], ['build:react']);
因此,它会监视根目录中的所有 .js
和 .jsx
文件,但我想忽略 node_modules
目录。
我该怎么做?
【问题讨论】:
***.com/questions/21605592/… 谢谢,解决了我的问题。 【参考方案1】:您可以使用gulp unwatch
这将从您的管道中删除指定的文件夹。但是,最好有一个 gulp 监视的 source
文件夹而不是项目根文件夹(然后 .git
目录和所有类型的文件都会被您的任务处理。
【讨论】:
以上是关于如何忽略 gulp:watch 中的 node_modules 目录?的主要内容,如果未能解决你的问题,请参考以下文章