Does anyone have jade template language working in brunch?

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

  1. Add to /package.json

    "dependencies":{
       ...
       "jade-brunch":"> 1.0 < 1.4",
       ...
    },
    
  2. Create your templates in /app/views/templates. Should be ended with .jade

  3. Run commands

    cd <App>
    npm install
    brunch build