MorJS watchNodeModules - 监听特定 node_modules
- 类型:
string | RegExp | string[]
- 默认值:
undefined
监听某个 node_modules
依赖。该配置适用于直接在 node_modules
中修改某个 npm
的代码且期望触发更新的场景。
注意:该配置开启后,会自动禁用缓存。
// 配置示例一: RegExp
{
// 监听 lodash 依赖的变更
watchNodeModules: /lodash/
}
// 配置示例二: string,支持 glob 模式
{
// 监听 lodash 依赖的变更
watchNodeModules: '**/lodash/**'
}
// 配置示例三: string[], 支持 glob 模式
{
// 监听 lodash 依赖的变更 且 监听所有前缀为 mor-runtime-plugin-* 的运行时插件变更
watchNodeModules: ['**/lodash/**', '**/mor-runtime-plugin-*/**']
}