Gulp - 定位文件夹及其子文件夹中的所有文件

Gulp - Target all files in a folder and its subfolders(Gulp - 定位文件夹及其子文件夹中的所有文件)
本文介绍了Gulp - 定位文件夹及其子文件夹中的所有文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我希望能够将 gulp 中的 watch 任务添加到 frontend 中的所有 js 文件中/js 和下面的任何其他 js 文件

I'd like to be able to add a watch task in gulp to all of the js files in the frontend/js and any other js files below

 gulp.watch('./frontend/js/**/*.js', ['browserify']);

这只会针对 js 一个文件夹深处的文件

This will only target js files one folder deep

推荐答案

应该匹配任意数量的子目录:

It's supposed to match any number of subdirectories:

** 如果globstar"在路径部分中单独存在,则它匹配零个或多个目录和子目录以搜索匹配项.它不会抓取符号链接的目录.

** If a "globstar" is alone in a path portion, then it matches zero or more directories and subdirectories searching for matches. It does not crawl symlinked directories.

https://github.com/isaacs/node-glob

那里有符号链接目录吗?

Do you have symlinked directories in there?

我认为您不会通过 gulp 原生遍历您的符号链接目录.我建议你看看 node.js fs.readdir 递归目录搜索 看看这些解决方案是否可以应用于您的用例.问题或答案中没有任何内容专门针对符号链接,所以我不知道那里是否有适合您的解决方案.如果您可以使用其中一种解决方案获得一组取消引用的路径名,那么您只需将该数组传递给 gulp.src().

I don't think you'll get gulp to natively traverse your symlinked directories. I recommend you take a look at node.js fs.readdir recursive directory search and see if any of those solutions can be applied to your use case. Nothing in the question or answers specifically addresses symlinks, so I don't know if there's a solution for you there or not. If you can get an array of dereferenced pathnames using one of those solutions, then you can just pass the array to gulp.src().

这篇关于Gulp - 定位文件夹及其子文件夹中的所有文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
Ordinals in words javascript(javascript中的序数)
getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)