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 is only a problem when working with continuous rebuild systems like Gulp and Grunt.
node-sass-json-importer uses require to load JSON files, which caches results. The plugin should either:
require
The text was updated successfully, but these errors were encountered:
Perhaps this is the issue I am experiencing right now...I have a setup similar to the following:
[module1 ----[config.json ----[module1.scss [module1 ----[config.json ----[module2.scss
Which doesn't seem to work properly when using a continuous rebuild system. However, changing to the following seems to work:
[module1 ----[module1.json ----[module1.scss [module1 ----[module2.json ----[module2.scss
However, ideally, I would like to stick with the first option if possible.
Is anyone able to confirm my issue?
Sorry, something went wrong.
No branches or pull requests
This is only a problem when working with continuous rebuild systems like Gulp and Grunt.
node-sass-json-importer uses
require
to load JSON files, which caches results. The plugin should either:The text was updated successfully, but these errors were encountered: