1
我想在任何.js
文件更改(built.js
除外)時運行requirejs優化腳本。Ruby Guard忽略文件
我看到有一個忽略方法。我在Gaurdfile
(這導致無限循環)中有以下內容。
guard 'shell', :ignore => 'built.js' do
watch(/script\/(.*).js/) { `node r.js -o build.js` }
end
我的問題是:如何配置我的Guardfile
忽略文件built.js
?
如果你只是完全想忽略built.js,把它放在文件的頂部(可能帶有過濾器),就像你在文檔中看到的那樣:https://github.com/guard/guard/wiki/Guardfile -例子 。有關過濾器的更多信息(僅考慮.js文件),請參閱此處的文檔:https://github.com/guard/guard#filter。有關guard-shell的語法,請參閱https://github.com/guard/guard-shell – RobM