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
The Shiki version filter ^0.11.1 does not match any Shiki version other than 0.11.1 (See here for more info), which contradicts
^0.11.1
0.11.1
Shiki is declared as a peerDependency, so @leafac/rehype-shiki doesn’t have to be updated when new versions of Shiki are released (as long as Shiki’s API remain compatible). See rsclarke/rehype-shiki#48 rsclarke/rehype-shiki#46 rsclarke/rehype-shiki#47 rsclarke/rehype-shiki#2.
Change the Shiki version filter to >=0.11.1 (I've tested this with Shiki 0.14.1)
>=0.11.1
0.14.1
Add the below to your package.json:
package.json
"overrides": { "@leafac/rehype-shiki": { "shiki": ">=0.11.1" } }
Note: see here for more info.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
The Shiki version filter
^0.11.1
does not match any Shiki version other than0.11.1
(See here for more info), which contradictsSolution
Change the Shiki version filter to
>=0.11.1
(I've tested this with Shiki0.14.1
)Workaround
Add the below to your
package.json
:Note: see here for more info.
The text was updated successfully, but these errors were encountered: