有没有办法在不实际编译的情况下加入手写笔部分?我想这与.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
有什么想法吗?
答案 0 :(得分:1)
我认为,这个问题更多是关于构建工具而不是Stylus本身,例如gulp.concat
或简单cat _thing-1.styl _thing-2.styl _thing-3.styl > _master.styl