我想使用grunt-regex-replace模块正则替换字符串。像这样:
{
name: 'Change the path name',
search: /src="app.js"/g,
replace: 'src="<%= path_to_file %>app.js"'
}
它正在使用的位置是.html.erb文件,因此&lt;%=%&gt;标签
不幸的是,由于某种原因,咕噜声没有通过&lt;%=%&gt;标签通过 - 结果是
src="app.js"
有没有人知道如何在Grunt中逃避这些,以便他们按照自己的意愿输出?期望的结果是
src="<%= path_to_file %>app.js"
Grunt是否使用像EJS这样在语义上使用这些标签的模板语言?如果是这样,如何逃避?