summaryrefslogtreecommitdiffstats
path: root/brunch-config.js
blob: 523f6785344fd4db76da553e55349da07e28824b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
  files: {
    javascripts: { joinTo: "app.js" },
    stylesheets: {
      joinTo: {
        "web.css": ["app/web.styl"],
        "print.css": ["app/print.styl"],
      },
    },
  },
  plugins: {
    stylus: {},
  },
};