Generated template naming (slashes) is inconsistent across mac and win platforms.
on windows:
TEMPLATES['res\templates\debug.tmpl'] = "<div class="panel">
......"
on mac:
TEMPLATES['res/templates/debug.tmpl'] = "<div class="panel">......"
The simplest solution would be in complile.js use unused normalizePath function
ex.
var templateName = path.relative(options.base, filepath) templateName=normalizePath(templateName);