4

I am trying to use Jeet and Rupture with my Stylus-Brunch.

What do I need to configure to get it to work?

dilzeem
  • 51
  • 4

2 Answers2

1

It's incredibly simple, or at least was for me. I just added this to my config.coffee file:

plugins:
  stylus:
    plugins: ['rupture', 'jeet']

... and then ran npm install -g rupture jeet inside the brunch app folder (may need sudo)

Matt Fletcher
  • 8,182
  • 8
  • 41
  • 60
  • At least with regards to jeet you want to be using -g (or --save-dev), not --save, as it's not a runtime dependancy. (I don't know anything about Rupture but it's likely the same if it's a Stylus plugin) – Nathan Hornby Jan 15 '16 at 16:58
  • Make sure to edit your answer when you get the chance :) – Nathan Hornby Jan 15 '16 at 18:56
0

You would probably need to configure a new plugin — a fork of stylus-brunch with Jeet/Rupture.

Paul Miller
  • 1,960
  • 1
  • 13
  • 15