Skip to content
Snippets Groups Projects
Commit df38f805 authored by Will Daly's avatar Will Daly
Browse files

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

Coffee compile command now executes for just *.coffee items.
parents bb644bb6 d947b0ec
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment