Webpack需要来自特定子目录

时间:2018-01-30 00:29:07

标签: javascript regex webpack require

这是我的文件夹结构

- componentA
  - specs
     - file1.js
     - file2.js
 - componentB
  - specs
     - file1.js
     - file2.js

我想要从componentA和B的每个规格目录下要求每个文件。 正则表达式怎么样?

类似于:require(** / specs / * .js)?

1 个答案:

答案 0 :(得分:0)

所以这为我解决了这个问题:

/.*\/specs\/.*\.js/