Trying to use brunch for my new project. One thing I want to do is being able to write all my HTML assets in jade and have brunch render it into HTML during the build. I found the jaded-brunch, but I cannot seem to figure out how to make it do what I want. Here is my config.
exports.config =
paths:
watched: ['client']
npm:
enabled: true
packages: ['react']
plugins:
jaded:
jade:
pretty: yes
files:
javascripts:
joinTo:
'js/app.js': /^app/
'js/vendor.js': /^(?!app)/
stylesheets:
joinTo: 'css/app.css'
templates:
joinTo: 'index.html'