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
I have a "_variables.scss" with two imports : @import "~bootstrap/scss/functions"; @import "~bootstrap/scss/variables";
@import "~bootstrap/scss/functions"; @import "~bootstrap/scss/variables";
When i run sass-export src/styles/common/_variables.scss -o src/exported-sass-variables.json -d "node_modules/bootstrap/scss/"
sass-export src/styles/common/_variables.scss -o src/exported-sass-variables.json -d "node_modules/bootstrap/scss/"
sass-export throw an error : Error: File to import not found or unreadable: ~bootstrap/scss/functions.
Error: File to import not found or unreadable: ~bootstrap/scss/functions.
even if I replace the ~ (shortcut to node_modules) by the relative path to node_modules
The text was updated successfully, but these errors were encountered:
@Sly36 I was also facing the same issue, and I gave the path to my scss directory. You can try in a below manner :
includePaths: ["node_modules/bootstrap/scss/"]
Sorry, something went wrong.
No branches or pull requests
I have a "_variables.scss" with two imports :
@import "~bootstrap/scss/functions"; @import "~bootstrap/scss/variables";
When i run
sass-export src/styles/common/_variables.scss -o src/exported-sass-variables.json -d "node_modules/bootstrap/scss/"
sass-export throw an error :
Error: File to import not found or unreadable: ~bootstrap/scss/functions.
even if I replace the ~ (shortcut to node_modules) by the relative path to node_modules
The text was updated successfully, but these errors were encountered: