标签: regex google-app-engine yaml
我有一个app.yaml文件,我想跳过整个node_modules目录,保存我添加的一个名为helpers.js的文件。目前我的文件如下:
app.yaml
node_modules
helpers.js
runtime: nodejs vm: true skip_files: - ^node_modules$
跳过整个node_modules目录除{/ 1>} 以外的最佳方法是什么?
答案 0 :(得分:7)
您的正则表达式中可能会just use a negative lookahead执行此操作:
^node_modules/(?!node\.js$).*
* this post也可能对您有用。