-
Notifications
You must be signed in to change notification settings - Fork 5
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
Migrate shiki-es
dep to shikiji
#76
Comments
shikiji
dep to shikiji
shiki-es
dep to shikiji
Hi @josecelano I've been working on how to migrate from I checked the |
OK @grmbyrn we can wait until it's merged. |
d4458bd fix check error (Graeme Byrne) 270b368 fix lint error (Graeme Byrne) 59b8ec9 contributor articles not appearing on contributor page (Graeme Byrne) Pull request description: * `routes/contributor/+layout.server.ts` wasn't accessing data from `routes/api` which had been set up to facilitate the change from `routes/(blog)` to `routes/blog`. This was causing the contributor's articles not to be shown on their page as detailed [here](#123). I made this data accesible to `routes/contributor` by adding the code below to `routes/contributor/+layout.server.ts` ``` export const load = async ({ fetch }) => { const response = await fetch(`/api`); const posts = await response.json(); return { posts }; }; ``` * Replaced deprecated [Shijiki](https://github.com/antfu/shikiji) and [shiki-es](https://github.com/pi0/shiki-es) with [Shiki](https://github.com/shikijs/shiki) as mentioned [here](#76). ACKs for top commit: josecelano: ACK d4458bd Tree-SHA512: 5d2a6b089827349489e3cb944a49ee6258d12c834e2af3e007e36150ba97f8ab82b49ee19fd7756cc1dae9a52104247c0630470ee85c1ceacb29affd242bd963
Stale issue message |
https://www.npmjs.com/package/shiki-es package has been deprecated. Migrate to https://github.com/antfu/shikiji
The text was updated successfully, but these errors were encountered: