-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecation warnings in latest SASS #4392
Conversation
I'm seeing some deprecation warnings as well. My Sass still compiles, but it seems to have broken some styles as well. |
The problem is older sass versions won't allow the !global flag that's needed here, so there's no real solution here till zurb decides to drop support for older sass versions. |
It's a 'DEPRECATION WARNING', but if you would apply these changes then it will break SASS 3.2 and lower. You can add this to your grunt file (if you are using grunt-contrib-sass like me and everybody should instead of grunt-sass) you can add this to the options: |
Not sure if there is a variable you can call from within your .scss that outputs the sass version. I guess you could do it manually: |
Given that these are for the moment just deprecation warnings, we're not quite ready to drop older versions of Sass. I'm going to move this into the F6 milestone and we'll tackle it there. Thanks! |
We're doing a pretty heavy re-write with the SCSS for F6, so we probably won't be able to merge this, but we'll make sure that F6 uses the |
@thedeerchild, When is the expected F6 due to release? |
Latest SASS (v3.3.0.rc.2) shows the following deprecation warnings when compiling. I think my changes fix this.