-
-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Mixins.scss uses un-imported variables. #2773
Comments
I have created Pull-Request #2774 that will fix this issue. |
Have the same - when can I expect fix to be released? |
Meanwhile I fix it importing all the files that are necessary
|
@dicren I believe |
|
Ah, right, @CallumWatkins, good point! |
@gonzofish Exactly, that is why in #2774 I've also added the |
* Newer webpack interfering with chunk names. * Until bulma error is resolved, we must override the mixins jgthms/bulma#2773
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I don’t agree with the Stale bot. As the PR hasn’t been merged yet, it should not be closed. |
It takes almost four years to fix this issue? |
@Artem-Schander I don’t know what you mean, this ticket was created in January of this year. @jgthms what a great way to show how thankful you are to people who contribute. After 10 months of (seeming) inactivity, you close the issue by ignoring the created PR, and instead create a commit of your own without any credit to someone who has supplied (part of) the solution. Then you continue to close this ticket without any message, at least a simple ‘thank you for your contribution’ would have been nice. If it takes 10 months to look into a change of 1 line of scss, together with what I said in the lines above, that does raise serious questions about the state of the project and its maintainers. The open source community is a wonderful community, but if you treat them like this, don’t expect people to actively contribute in the future any more. |
@Didel You‘re right. My bad. I‘ve seen the 17 and thought, what a long time. |
Latest NPM package (0.9.1) still does not have this issue fixed so the build fails in a TypeScript VueJS app without the PR included. |
Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used patch-package to patch Here is the diff that solved my problem: diff --git a/node_modules/bulma/sass/utilities/mixins.sass b/node_modules/bulma/sass/utilities/mixins.sass
index 0ed78c1..7c5ee20 100644
--- a/node_modules/bulma/sass/utilities/mixins.sass
+++ b/node_modules/bulma/sass/utilities/mixins.sass
@@ -1,4 +1,5 @@
@import "initial-variables"
+@import "derived-variables"
=clearfix
&::after This issue body was partially generated by patch-package. |
This is about Bulma.
Overview of the problem
This is about the Bulma CSS framework
I'm using Bulma version 0.8.0
This is a Sass issue.
I am almost sure this issue is not a duplicate.
Description
Utilities/mixins.scss includes
@import "initial-variables"
in order to resolve the variables used in the various defined mixins. However, version 0.8.0 includes a mixin (=delete) that makes use of the$scheme-invert
variable, while it is not specified in the included initial-variables.scss .This will cause a problem if you only import the mixins, because the
$scheme-invert
variable will be undefined.Steps to Reproduce
@import "./node_modules/bulma/sass/utilities/mixins";
)Expected behavior
No compilation errors.
Actual behavior
I got a compiler error:
The text was updated successfully, but these errors were encountered: