Is there any way to join stylus partials without actually compiling them? I guess this would be the same as .SCSS files - so then it's a question of build tools. In codekit - you can join javascript files in this way / but that is because it's not a superset style language. I currently use broccoli or brunch depending on the stack, for my builds. I am not interested in trying any other build tools right now.
_thing-1.styl
html
background: blue
_thing-2.styl
div
background: red
_thing-3.styl
span
color: yellow
app.styl
@import '_thing-1'
@import '_thing-2'
@import '_thing-3'
app.css
html {
background: blue;
}
div {
background: red;
}
span {
color: yellow;
}
and... THIS is what I want to have as well...
_master.styl
html
background: blue
div
background: red
span
color: yellow
Any ideas?