includePaths from the Node API expects an array of paths, but I can't figure out how to pass multiple paths on the command line. Is that possible? It seems like the CLI is checking for include-path to be an array, but it is initially declared as a string.
I expected it to work like node-sass sass/ --include-path path/1/ path/2/ -o css/. Perhaps there is a different syntax and I'm just being a bit dull?
If this is currently impossible, I could certainly try my hand at implementing it!
Just a shot in the wild, but have you tried node-sass sass/ --include-path /1 --include-path /2. This is just a guess, since it is how most CLI tools work ...
@mgreter Nice! worked great!
:+1:
Most helpful comment
Just a shot in the wild, but have you tried
node-sass sass/ --include-path /1 --include-path /2. This is just a guess, since it is how most CLI tools work ...