NativeScript / nativescript-dev-sass

SASS CSS pre-processor for NativeScript projects
Apache License 2.0
44 stars 17 forks source link

Regression: symbolic links no longer followed #28

Closed ludwiktrammer closed 7 years ago

ludwiktrammer commented 7 years ago

Previous versions of nativescript-dev-sass used to follow symbolic links (see f3d0f2f0). Several of our projects make use of this feature. Unfortunately this broke after we tried to upgrade to the most recent version of nativescript-dev-sass. It turns out that commit f840781f7 is the culprit. It seems that the fix should be as easy as adding --follow to nodeArgs.

ludwiktrammer commented 7 years ago

I tried to fix this, but it seems the problem is more complicated than I thought. Adding --follow makes this work if the .css file doesn't exist yet, but it still fails to update existing .css files in symlinked directories. I don't know the reason :| I'm testing with NativeScript 3 RC.

ludwiktrammer commented 7 years ago

Ok, the other thing I was expecting is pretty specific to my setup and is due to an issue in node-sass. I created an issue there and will resubmit the previous pull request for nativescript-dev-sass.