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
It seems that the auto generated file paths when run under Windows are generated with only a single \. This needs to be generated as \\ to escape the first backslash.
The auto generated comments also fail with the backslashes:
/**
*
*/
e.g C:\Users\Adam needs to be generated as C:\\Users\\Adam and the comments need to be escaped as well.
It seems that the auto generated file paths when run under Windows are generated with only a single
\. This needs to be generated as\\to escape the first backslash.The auto generated comments also fail with the backslashes:
e.g
C:\Users\Adamneeds to be generated asC:\\Users\\Adamand the comments need to be escaped as well.A good place to start would be here: https://github.com/govau/pancake/blob/master/packages/pancake-sass/src/sass.js#L142