Commit df38f805 by Will Daly

Merge pull request #638 from edx/will/coffee-too-many-files

Coffee compile command now executes for just *.coffee items.
parents bb644bb6 d947b0ec
......@@ -30,7 +30,11 @@ def coffee_cmd(watch=false, debug=false)
end
end
"node_modules/.bin/coffee --compile #{watch ? '--watch' : ''} ."
if watch
"node_modules/.bin/coffee --compile --watch . "
else
"node_modules/.bin/coffee --compile `find . -name *.coffee` "
end
end
def sass_cmd(watch=false, debug=false)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment