We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
this.options.file
functions
I'm using node-sass in a project and am considering to migrate to dart-sass, but have a compatibility issue.
node-sass
dart-sass
In node-sass docs there is this note:
... // this.options contains this options hash, this.callback contains the node-style callback
this.options is also available in functions and I rely on this.options.file for proper routing of url(path) in SASS files.
this.options
url(path)
When using dart-sass the this object is the global scope :(
this
The text was updated successfully, but these errors were encountered:
Thank you!
Sorry, something went wrong.
Awjin
Successfully merging a pull request may close this issue.
I'm using
node-sass
in a project and am considering to migrate todart-sass
, but have a compatibility issue.In node-sass docs there is this note:
... // this.options contains this options hash, this.callback contains the node-style callback
this.options
is also available in functions and I rely onthis.options.file
for proper routing ofurl(path)
in SASS files.When using
dart-sass
thethis
object is the global scope :(The text was updated successfully, but these errors were encountered: