-
Notifications
You must be signed in to change notification settings - Fork 1.7k
[IMPL] - added support for sass and scss stylesheet languages #4292
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
Merged
adhami3310
merged 29 commits into
reflex-dev:main
from
KronosDev-Pro:add-sass-scss-stylesheet-support
Mar 18, 2025
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
0681cc2
[IMPL] - added support for sass and scss stylesheet languages
KronosDev-Pro 707f345
fix f-string bug
KronosDev-Pro e645d0f
make "libsass" an optional dependency
KronosDev-Pro 7e7687d
remove libsass of deps list
KronosDev-Pro d6bd371
revert peotry relock
KronosDev-Pro 0fe38d2
fix test caused by optional "libsass" deps
KronosDev-Pro df9818c
improving `_compile_root_stylesheet` function and add folder styleshe…
KronosDev-Pro 370b138
fix the copy files in assets to public folder
KronosDev-Pro 9bdea04
Merge branch 'main' into add-sass-scss-stylesheet-support
KronosDev-Pro 4df9d5d
remove useless f-string
KronosDev-Pro c523872
little general improvement
KronosDev-Pro 13b21a1
fix f-string
KronosDev-Pro 0223081
remove useless path search
KronosDev-Pro 4fae418
remove unused var & import
KronosDev-Pro 613e130
[IMPL] - added support for sass and scss stylesheet languages
KronosDev-Pro 81dab90
fix f-string bug
KronosDev-Pro e815903
make "libsass" an optional dependency
KronosDev-Pro 6e32fcb
remove libsass of deps list
KronosDev-Pro 2ca363c
fix test caused by optional "libsass" deps
KronosDev-Pro 6898a26
improving `_compile_root_stylesheet` function and add folder styleshe…
KronosDev-Pro 59a0cbf
fix the copy files in assets to public folder
KronosDev-Pro 6a2a5ff
remove useless f-string
KronosDev-Pro f04431a
little general improvement
KronosDev-Pro 3b403cc
fix f-string
KronosDev-Pro b8e2ddd
remove useless path search
KronosDev-Pro 8b46852
remove unused var & import
KronosDev-Pro ff18003
Merge branch 'add-sass-scss-stylesheet-support' of https://github.com…
KronosDev-Pro 0dde556
Merge branch 'main' into add-sass-scss-stylesheet-support
KronosDev-Pro 0f0594c
Merge branch 'main' into add-sass-scss-stylesheet-support
adhami3310 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are you sure this won't break anything?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know where this could cause a problem, since all the supported stylesheet files in the
app/assetsdirectories and subdirectories are copied or compiled and saved in the.web/stylesdirectory and no longer in the.web/publicdirectories.and also, I checked the second batch of the
tests/integrationgroup and thetests/integration/test_tailwind.py(which is the only one to have tests impacted by the changes) passed the tests without any errors, which is why I don't understand the error in the first batch of thetests/integrationgroup.