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 was trying to upgrade from version 2.2.6 to 3.0.0
TailwindCSS
tailwindcss-classnames
Node.js
When running "yarn generate-css-types" I'm getting this error:
The classnames file gets generated as in former version.
Just run the command
The text was updated successfully, but these errors were encountered:
Is v3 compatible with tailwindcss v2? Have you tried upgrading tailwindcss to v3 too?
Sorry, something went wrong.
Yes, I tried that to, but it didn't change anything
I think this is because you are using an old config (v2) which is not compatible with v3 in which the closures evaluation has changed:
v2:
module.exports = { theme: { backdropBlur: (theme) => theme('blur'), } }
v3:
module.exports = { theme: { backdropBlur: ({ theme }) => theme('blur'), } }
No branches or pull requests
I was trying to upgrade from version 2.2.6 to 3.0.0
Environment:
TailwindCSS
version: "2.2.19"tailwindcss-classnames
version: "3.0.0"Node.js
version: "16.13.0"Current Behavior
When running "yarn generate-css-types" I'm getting this error:
Expected Behavior
The classnames file gets generated as in former version.
How to Reproduce
Just run the command
Additional Questions
The text was updated successfully, but these errors were encountered: