Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在我正在使用以下内容从优化构建中排除 r.js 和 build.js 文件。
fileExclusionRegExp: /^(r|build)\.js$/
如何添加到此内容以排除具有特定扩展名的目录或其他文件?我应该仍然使用此设置还是有其他方法来处理它。特别是我想排除这两个 js 文件和整个目录。
您可以使用运算符在一个正则表达式模式中组合多个排除项|。例如:
|
fileExclusionRegExp: /.psd$|sound/
这不包括所有.psd文件和sound目录。 但请记住,它会删除包含sound在绝对文件名中的任何文件,因此不仅是.../sound/...,而且.../sound.js也是。我不知道如何在模式中包含斜线。正常转义在这里不起作用。因此,请确保您没有此类名称冲突。
.psd
sound
.../sound/...
.../sound.js