is there any way to compile SASS without Ruby or Python? I used compass and grunt-sass/node-sass but want to compile it on windows-machines without the need to install one of them.
Asked
Active
Viewed 228 times
1 Answers
1
node-sass doesn't require Python or Ruby to run. Python is only requiredto rebuild the binary if you're running on a Node version that doesn't have a precompiled binary available. EX: you're running the latest Node, but a really old node-sass.

nschonni
- 4,069
- 1
- 28
- 37
-
that was correct. since i've updated my package.json it works fine with node-sass – Mace Dec 07 '16 at 12:59