有没有办法在不实际编译的情况下加入手写笔分音?

Is there any way to join stylus partials without actually compiling them?

有没有办法在不实际编译的情况下加入手写笔分音?我想这与 .SCSS 文件相同 - 所以这是构建工具的问题。在 codekit 中 - 你可以用这种方式加入 javascript 文件 / 但那是因为它不是超集风格的语言。我目前根据堆栈使用西兰花或早午餐,用于我的构建。我现在对尝试任何其他构建工具不感兴趣。


_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;
}


而且...这也是我想要的...

_master.styl

html
  background: blue

div
  background: red

span
  color: yellow

有什么想法吗?

我认为,这个问题更多是关于构建工具而不是 Stylus 本身,比如 gulp.concat 或简单的 cat _thing-1.styl _thing-2.styl _thing-3.styl > _master.styl