Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SASS / SCSSをスタイラスに変換するツールはありますか?
または、SCSSのコンパイルを高速化する方法はありますか?
MojoTechは、SASSをスタイラスに簡単に変換するツールを作成しました。
http://sass2stylus.com/
動作を確認したい場合は、Githubでソースコードを表示できます。
利用可能な直接ツールがあるとは思えませんが、これを行うことができます。
SASSをCSSに変換する
sass input.scss -o output.css
次に、CSSをStylusに変換します
stylus --css output.css input.styl
1行変換
sass input.scss | stylus --css