0

実際にコンパイルせずにスタイラスのパーシャルを結合する方法はありますか? これは.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

何か案は?

4

1 に答える 1

1

この質問はビルドツールに関するものであり、スタイラス自体ではなく、gulp.concat単純なもののようなものだと思いますcat _thing-1.styl _thing-2.styl _thing-3.styl > _master.styl

于 2015-03-18T11:22:33.200 に答える