---
title: "Deprecation: #102099 - Deprecate CKEditor 5 bundle module"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-102099"
source: "Changelog/12.4.x/Deprecation-102099-DeprecateCKEditor5BundleModule.rst"
typo3-version: "12.4.x"
typo3-major: 12
type: "deprecation"
issue: 102099
forge: "https://forge.typo3.org/issues/102099"
tags: ["PHP-API", "NotScanned", "ext:core"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Deprecation: #102099 - Deprecate CKEditor 5 bundle module {#deprecation-102099}

See [forge#102099](https://forge.typo3.org/issues/102099)

## Description {#description}

With the CKEditor 5 integration in TYPO3 v12 a custom CKEditor 5 build in form of
a bundle has been introduced. Missing plugins had to be merged into that bundle
again and again which lead to an increased bundle size. Also plugin authors had
to reference the bundle module in order to fetch plugin exports from CKEditor.

With CKEditor 5 suggestion to use named exports from the CKEditor 5 package entry
point modules, it became feasible to create smaller bundles. One bundle per
scoped subpackage. For that reason `@typo3/ckeditor5-bundle.js` is now
deprecated.

## Impact {#impact}

TYPO3 can ship all available CKEditor 5 modules and only actually requested modules
are loaded. Developers can write plugins as suggested by upstream documentation.

## Affected Installations {#affected-installations}

Installations having custom extensions activated, that provide custom CKEditor 5
plugins. Extensions that use`@typo3/ckeditor5-bundle.js` will still work
as before (as the bundle module re-exports the exports of the split bundles)
but will trigger a deprecation log message to the browser console.

## Migration {#migration}

Extension authors should import from scoped `@ckeditor/ckeditor5-*` packages
directly.

```javascript
// Before
import {Core, UI} from '@typo3/ckeditor5-bundle.js';

// After
import * as Core from '@ckeditor/ckeditor5-core';
import * as UI from '@ckeditor/ckeditor5-ui';
```
