确认排除类型为“.min.js”的文件

发布于 2024-11-03 20:52:08 字数 381 浏览 4 评论 0原文

我动态缩小 javascript 文件,并在现有文件旁边生成一个 .min.js 文件。不过,当使用 ack 时,这是一个问题,因为它会将这些文件视为 .js 文件,并使用缩小的 JavaScript 在我的结果屏幕上搜索它们。

我尝试将其添加到我的 .ackrc 中,但没有成功:

--type-set=minjs=.min.js                                                                                  
--nominjs

有没有办法让 ack 忽略这种类型的扩展?

PS 我无法选择简单地将 .min.js 重命名为 .min_js 或任何其他变体。

I minify javascript files on the fly and produce a .min.js file beside the existing file. This is a problem though when using ack as it treats these as .js files and searches them littering my results screen with minified javascript.

I've tried adding this to my .ackrc with no luck:

--type-set=minjs=.min.js                                                                                  
--nominjs

Is there any way to get ack to ignore this type of extension?

PS I do not have the option of simply renaming .min.js to .min_js or any other variation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

魂ガ小子 2024-11-10 20:52:08

它看起来像是 App::Ack::filetypes 中的限制。

正则表达式是:

if ( $filename =~ m{\.([^\.$dir_sep_chars]+)$}o ) {

那个“.”其中将阻止匹配之前的任何内容。

It looks like a limitation in App::Ack::filetypes.

The regular expression is:

if ( $filename =~ m{\.([^\.$dir_sep_chars]+)$}o ) {

That "." in there is going to block from matching anything previous.

苏大泽ㄣ 2024-11-10 20:52:08

Ack 会忽略 min.js 文件自版本 1.96 起,因此只需进行简单升级即可窍门。

您无需设置任何选项。默认情况下会发生忽略。

Ack ignores min.js files as of version 1.96, so a simple upgrade will do the trick.

There is no option you need to set. The ignoring happens by default.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文