Skip to content

Shiki v4.0.0

Shiki v4.0.0 drops support for Node.js 18 and remove deprecated APIs.

In Shiki, new features are shipped in minor releases progressively, while the major releases are for cleaning up and removing deprecated APIs.

Breaking Changes

Node.js 18 Dropped

Shiki v4 requires Node.js ≥ 20. Node.js 18 reached End-of-Life in April 2025 and is no longer supported.

If you are running Node.js 18, please upgrade to Node.js 20 LTS or later before upgrading to Shiki v4.

Deprecated APIs Removed

CreatedBundledHighlighterOptions Removed

The CreatedBundledHighlighterOptions interface (a typo, with "Created" instead of "Create") has been removed. Use CreateBundledHighlighterOptions instead:

ts
import type { CreatedBundledHighlighterOptions } from 'shiki'
import type { CreateBundledHighlighterOptions } from 'shiki'

createdBundledHighlighter Removed

The createdBundledHighlighter function (a typo, with "created" instead of "create") has been removed. Use createBundledHighlighter instead:

ts
import { createdBundledHighlighter } from 'shiki'
import { createBundledHighlighter } from 'shiki'

theme Option Removed in TwoslashFloatingVue

The singular theme option passed to TwoslashFloatingVue (from @shikijs/vitepress-twoslash) has been removed. Use themes instead:

ts
app.use(TwoslashFloatingVue, {
  theme: { /* ... */ }, 
  themes: { /* ... */ }, 
})

CSS Class twoslash-query-presisted Removed

The misspelled CSS class twoslash-query-presisted (note the typo — missing the second s) has been removed. Use the correct twoslash-query-persisted instead.

Released under the MIT License.