Merged
Conversation
when using postcss using parcel an error was occuring due to no check mentioned for value at line 401 , which caused error while reading value when it was undefined hence i added a check if its value is undefined continue and dont move forward
Contributor
Author
|
minor error fixed at line 401 , when value is == null we should not move forward and continue to avoid error, which i faced while using postcss with parcel (while using tailwind) |
Member
|
Thanks! I am right now on vacation. I will try to release it later this week. |
Hmve
added a commit
to Hmve/react-if
that referenced
this pull request
May 26, 2025
- Bump version to 4.2.0 - Update demo to Tailwind CSS 4.x - Update demo to DaisyUI 5.x - Replace autoprefixer with @parcel/transformer-postcss - Resolve all linter issues - Move theme definition to index.css (tailwind.config.js deprecated) - **Note**: Current bug in PostCSS with new Tailwind version - Apply patch from this PR to run the demo: postcss/postcss#2046 - New PostCSS version expected later this week
favna
added a commit
to romac/react-if
that referenced
this pull request
May 27, 2025
* refactor: update all packages of the main project incl. update to react 19 - fixed most of the linter issues - fixed typescript issues - added tsconfig.typedoc.json to handle typedoc issues - demo project will follow * refactor: update demo project dependencies to 4.2.0 - Bump version to 4.2.0 - Update demo to Tailwind CSS 4.x - Update demo to DaisyUI 5.x - Replace autoprefixer with @parcel/transformer-postcss - Resolve all linter issues - Move theme definition to index.css (tailwind.config.js deprecated) - **Note**: Current bug in PostCSS with new Tailwind version - Apply patch from this PR to run the demo: postcss/postcss#2046 - New PostCSS version expected later this week * fix: some files got lost - sorry * Update package.json ok didn't know that. Co-authored-by: Jeroen Claassens <jeroen.claassens@live.nl> --------- Co-authored-by: Jeroen Claassens <jeroen.claassens@live.nl>
Member
|
Thanks. Released in 8.5.4. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
when using postcss using parcel
an error was occuring due to no check mentioned for value at line 401 , which caused error while reading value when it was undefined hence i added a check if its value is undefined continue and dont move forward