Reputation: 3367
I'm trying to build an application starting from Balloons (http://balloons.io), which uses Backbone.js and express to setup the UI. I've never used these frameworks, and I'm having a hard time actually making changes.
As I understand it, .styl files are compiled into CSS files. How do I do this compilation?
Upvotes: 3
Views: 7863
Reputation: 36767
For production systems you'd use a stylus executable to convert .styl
to .css
before deployment. It's as easy as doing:
stylus css --out stylesheet_dir
in the folder where your .styl
files reside.
For development you can use stylus middleware to convert files on the fly.
Upvotes: 3