Is there any tools to convert SASS/SCSS to Stylus?
Or any way to speed up compiling SCSS?
Is there any tools to convert SASS/SCSS to Stylus?
Or any way to speed up compiling SCSS?
I doubt there are any direct tools available, but you can do this:
Convert SASS to CSS
sass input.scss -o output.css
Then convert CSS to Stylus
stylus --css output.css input.styl
One line conversion
sass input.scss | stylus --css
MojoTech made a tool to easily convert SASS to Stylus:
You can view the source code on Github if you'd like to see how it works.
I doubt there are any direct tools available, but you can do this:
Convert SASS to CSS
sass input.scss -o output.css
Then convert CSS to Stylus
stylus --css output.css input.styl
One line conversion
sass input.scss | stylus --css
© 2022 - 2024 — McMap. All rights reserved.