-
Notifications
You must be signed in to change notification settings - Fork 303
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
The theme *.scss
files are all ignored
#24
Labels
bug
Something isn't working
Comments
I suppose in my installation this is still working correctly, because I'm not using the tutor-indigo plugin version, but still the old version (using |
regisb
added a commit
to overhangio/tutor
that referenced
this issue
May 30, 2022
When rendering theme files in a plugin, the *.scss files are stored in a "partials" subdirectory, which was ignored by the environment rendering logic. To render these files, we move the path ignoring logic to a filter, which is a list of regular expressions. Values in this filter can be overridden by another filter. See the corresponding issue in the indigo theme plugin: overhangio/tutor-indigo#24
regisb
added a commit
to overhangio/tutor
that referenced
this issue
May 30, 2022
When rendering theme files in a plugin, the *.scss files are stored in a "partials" subdirectory, which was ignored by the environment rendering logic. To render these files, we move the path ignoring logic to a filter, which is a list of regular expressions. Values in this filter can be overridden by another filter. See the corresponding issue in the indigo theme plugin: overhangio/tutor-indigo#24
regisb
added a commit
to overhangio/tutor
that referenced
this issue
May 30, 2022
When rendering theme files in a plugin, the *.scss files are stored in a "partials" subdirectory, which was ignored by the environment rendering logic. To render these files, we move the path ignoring logic to a filter, which is a list of regular expressions. Values in this filter can be overridden by another filter. See the corresponding issue in the indigo theme plugin: overhangio/tutor-indigo#24
regisb
added a commit
that referenced
this issue
May 30, 2022
*.scss files were not rendered at all in the tutor environment because they are stored in a "partials" subdirectory. Here, we make use of the new pattern include/ignore filter to force the rendering of the indigo theme directory. Close #24.
regisb
added a commit
that referenced
this issue
May 30, 2022
*.scss files were not rendered at all in the tutor environment because they are stored in a "partials" subdirectory. Here, we make use of the new pattern include/ignore filter to force the rendering of the indigo theme directory. Close #24.
regisb
added a commit
to overhangio/tutor
that referenced
this issue
Jun 3, 2022
When rendering theme files in a plugin, the *.scss files are stored in a "partials" subdirectory, which was ignored by the environment rendering logic. To render these files, we move the path ignoring logic to a filter, which is a list of regular expressions. Values in this filter can be overridden by another filter. See the corresponding issue in the indigo theme plugin: overhangio/tutor-indigo#24
regisb
added a commit
that referenced
this issue
Jun 3, 2022
*.scss files were not rendered at all in the tutor environment because they are stored in a "partials" subdirectory. Here, we make use of the new pattern include/ignore filter to force the rendering of the indigo theme directory. Close #24.
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
All scss files that ship with this theme (including "_extras.scss") are not rendered in the Tutor project environment. That's because they are located in a "partials" folder which is explicitly ignored by Tutor: https://github.com/overhangio/tutor/blob/669f8363283c5351ff39007e06df42dd1c48b2c7/tutor/env.py#L75
This issue was detected in this conversation: #23 (comment)
The proper solution would probably be to move the files from the "partials" folder and put them directly in the "indigo" directory. I need to check whether this would be working.
The text was updated successfully, but these errors were encountered: