You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if and only if the CRLF linefeeds were used in the input.
Further notes:
Using node-sass master:
:: this is cmdmkdir \temp
notepad c:\temp\blah.scss :: type the aforementioned Sass code, save and close notepad
cd path\to\node-sass\cloned\directory
node
:: assuming you have mingw in your path
dos2unix c:/temp/blah.scss
:: dos2unix utility replaces \r\n with \n:: dos2unix utility is reciprocal of unix2dos utility
node
First part would have been enough 😉 Once I knew what to look for it was a pretty easy fix.
Probably took less time to fix it (#1066) than to write this.
Now I'll have a 🍺 and checkout the sourcemap issues.
I like and fear that idea 😈 On this account I think I still have not enabled windows linefeeds on windows by default. Would be a good time to actually try it out. Although I'm not sure if the spec runner really is that picky about lineending types currently.
Related to #942.
Given the following input:
The output is:
if and only if the CRLF linefeeds were used in the input.
Further notes:
Using node-sass master:
outputs:
'.foo.bar {\n color: #F00; }\n\ndiv {\n content: "fobar"; }\n'
Ctrl+C to exit node.js REPL.
Run:
outputs:
The text was updated successfully, but these errors were encountered: