文件夹和子文件夹中的文件使用什么 glob 模式?

What glob pattern to use for files inside a folder AND sub-folders?

我正在尝试 运行 一个 npm 任务来检查某些 JS 文件。

给定以下列表文件:

/root.js                            // should be excluded
/js-src/lib/test.js                 // should be excluded
/js-src/lib/anotherTst.js           // should be excluded
/js-src/utilities/anotherModule.js  // should be included
/js-src/modules/myModule.js         // should be included
/js-src/common.js                   // should be included

以下模式适用于除 'lib' 之外的所有子文件夹:./js-src/!(lib)/**/*.js。但是,common.js 被忽略,因为在 globtester

上可见

迷你 match/globbing 模式应该是什么才能让它起作用?

尝试 /**/!(lib)/*.js 使用 globster.xyz