Anyone got jade templets working with brunch? If so how?
Seems that's it's compliant (on Brucn Homepage):
Pre-compiled templates: Handlebars.js, Jade, Mustache, Eco
Seems like you have to do that (on first page of documentation), obviously replacing eco to jade:
Remove "handlebars-brunch": "version" line from package.json. Add "eco-brunch": "version" there Change config.files.templates.defaultExtension to eco in config.coffee.
Seems like you have a RTFM problem.
I am using it
Add to /package.json
"dependencies":{
...
"jade-brunch":"> 1.0 < 1.4",
...
},
Create your templates in /app/views/templates. Should be ended with .jade
Run commands
cd <App>
npm install
brunch build