Merge pull request #1486 from edx/e0d/specify-coffee-sources

E0d/specify coffee sources
This commit is contained in:
e0d
2013-10-28 12:53:15 -07:00

View File

@@ -31,9 +31,9 @@ def coffee_cmd(watch=false, debug=false)
end
end
if watch
"node_modules/.bin/coffee --compile --watch . "
"node_modules/.bin/coffee --compile --watch lms/ cms/ common/"
else
"node_modules/.bin/coffee --compile `find . -name *.coffee` "
"node_modules/.bin/coffee --compile `find lms/ cms/ common/ -type f -name *.coffee` "
end
end