Commit 849022f0 by Timothée Peignier

Merge pull request #279 from Satook/master

Coffeescript compiler now accepts .litcoffee and .coffee files.
parents 6a84bd2a 98e78ba1
......@@ -8,7 +8,7 @@ class CoffeeScriptCompiler(SubProcessCompiler):
output_extension = 'js'
def match_file(self, path):
return path.endswith('.coffee')
return path.endswith('.coffee') or path.endswith('.litcoffee')
def compile_file(self, infile, outfile, outdated=False, force=False):
if not outdated and not force:
......
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