実際にコンパイルせずにスタイラスのパーシャルを結合する方法はありますか? これは.SCSSファイルと同じだと思います-それではビルドツールの問題です。codekit では、この方法で JavaScript ファイルを結合できますが、これはスーパーセット スタイルの言語ではないためです。私は現在、ビルドにスタックに応じてブロッコリーまたはブランチを使用しています。現在、他のビルド ツールを試すことに興味はありません。
_thing-1.styl
html
background: blue
_thing-2.styl
div
background: red
_thing-3.styl
span
color: yellow
app.style
@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
何か案は?