Skip to content
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

Why is the sass version locked to 1.7.2? #67

Closed
MarekLacoAXA opened this issue Sep 26, 2019 · 2 comments · Fixed by #74
Closed

Why is the sass version locked to 1.7.2? #67

MarekLacoAXA opened this issue Sep 26, 2019 · 2 comments · Fixed by #74

Comments

@MarekLacoAXA
Copy link

MarekLacoAXA commented Sep 26, 2019

Why is the sass version locked to 1.7.2?
I think it would be beneficial to use never versions. Correct me if I am missing something.

I need the importing of CSS same as @LucaMele in #50
According to the docu of SASS-LANG the sass lib supports this since 1.11.0:
https://sass-lang.com/documentation/at-rules/import#importing-css

@jderochervlk
Copy link

This would also allow us to include @use and @forward.

I'll look into making a PR to fix this.

@aarongarciah
Copy link

You can use the runtime option to pass the sass implementation that you want. For example, you can install in your project sass@1.26.3 and then when using rollup-plugin-sass pass the option:

sass({
  options: {
    runtime: require('sass')
  }
})

This way you can use rollup-plugin-sass with the sass version that your project is using.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants