diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/.eslintrc.js b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/.eslintrc.js
deleted file mode 100644
index 370d06cb1..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/.eslintrc.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/**
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
-
-/* eslint-env node */
-
-'use strict';
-
-module.exports = {
- rules: {
- 'ckeditor5-rules/ckeditor-imports': 'off'
- }
-};
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/package.json b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/package.json
deleted file mode 100644
index 6cc2935fe..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/package.json
+++ /dev/null
@@ -1,78 +0,0 @@
-{
- "name": "@ckeditor/ckeditor5-build-trilium",
- "version": "43.2.0",
- "description": "The document editor build of CKEditor 5 – the best browser-based rich text editor.",
- "keywords": [
- "ckeditor5-build",
- "ckeditor",
- "ckeditor5",
- "ckeditor 5",
- "wysiwyg",
- "rich text",
- "editor",
- "html",
- "contentEditable",
- "editing",
- "operational transformation",
- "ot",
- "collaboration",
- "collaborative",
- "real-time",
- "framework"
- ],
- "main": "./build/ckeditor.js",
- "types": "./build/ckeditor.d.ts",
- "files": [
- "build",
- "ckeditor5-metadata.json",
- "CHANGELOG.md"
- ],
- "dependencies": {
- "@ckeditor/ckeditor5-adapter-ckfinder": "43.2.0",
- "@ckeditor/ckeditor5-alignment": "43.2.0",
- "@ckeditor/ckeditor5-autoformat": "43.2.0",
- "@ckeditor/ckeditor5-basic-styles": "43.2.0",
- "@ckeditor/ckeditor5-block-quote": "43.2.0",
- "@ckeditor/ckeditor5-ckbox": "43.2.0",
- "@ckeditor/ckeditor5-ckfinder": "43.2.0",
- "@ckeditor/ckeditor5-cloud-services": "43.2.0",
- "@ckeditor/ckeditor5-easy-image": "43.2.0",
- "@ckeditor/ckeditor5-editor-decoupled": "43.2.0",
- "@ckeditor/ckeditor5-essentials": "43.2.0",
- "@ckeditor/ckeditor5-font": "43.2.0",
- "@ckeditor/ckeditor5-heading": "43.2.0",
- "@ckeditor/ckeditor5-image": "43.2.0",
- "@ckeditor/ckeditor5-indent": "43.2.0",
- "@ckeditor/ckeditor5-link": "43.2.0",
- "@ckeditor/ckeditor5-list": "43.2.0",
- "@ckeditor/ckeditor5-media-embed": "43.2.0",
- "@ckeditor/ckeditor5-paragraph": "43.2.0",
- "@ckeditor/ckeditor5-paste-from-office": "43.2.0",
- "@ckeditor/ckeditor5-table": "43.2.0",
- "@ckeditor/ckeditor5-typing": "43.2.0",
- "@ckeditor/ckeditor5-utils": "43.2.0"
- },
- "devDependencies": {
- "@ckeditor/ckeditor5-core": "43.2.0",
- "@ckeditor/ckeditor5-dev-translations": "^43.0.0",
- "@ckeditor/ckeditor5-dev-utils": "^43.0.0",
- "@ckeditor/ckeditor5-theme-lark": "43.2.0",
- "terser-webpack-plugin": "^4.2.3",
- "typescript": "5.0.4",
- "webpack": "^5.94.0",
- "webpack-cli": "^5.1.4"
- },
- "author": "CKSource (http://cksource.com/)",
- "license": "GPL-2.0-or-later",
- "homepage": "https://ckeditor.com/ckeditor-5",
- "bugs": "https://github.com/ckeditor/ckeditor5/issues",
- "repository": {
- "type": "git",
- "url": "https://github.com/ckeditor/ckeditor5.git",
- "directory": "packages/ckeditor5-build-decoupled-document"
- },
- "scripts": {
- "build": "webpack --mode production",
- "postbuild": "tsc -p ./tsconfig.types.json"
- }
-}
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/sample/index.html b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/sample/index.html
deleted file mode 100644
index 769d5c94d..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/sample/index.html
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
- CKEditor 5 – document editor build – development sample
-
-
-
-
-CKEditor 5 – document editor build – development sample
-
-The toolbar
-
-
-The editable
-
-
-
-
-
-
-
-
-
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/sync_version.js b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/sync_version.js
deleted file mode 100644
index 7e229e92a..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/sync_version.js
+++ /dev/null
@@ -1,18 +0,0 @@
-const fs = require("fs");
-
-const sourcePackageJson = JSON.parse(fs.readFileSync("../ckeditor5-build-decoupled-document/package.json"));
-const destPackageJson = JSON.parse(fs.readFileSync("./package.json"));
-
-function updateDependencies(sourceDeps, destDeps) {
- for (const [ name, version ] of Object.entries(sourceDeps)) {
- destDeps[name] = version;
- }
-}
-
-updateDependencies(sourcePackageJson.dependencies, destPackageJson.dependencies);
-updateDependencies(sourcePackageJson.devDependencies, destPackageJson.devDependencies);
-
-const coreVersion = sourcePackageJson.devDependencies["@ckeditor/ckeditor5-core"];
-destPackageJson.version = coreVersion;
-
-fs.writeFileSync("./package.json", JSON.stringify(destPackageJson, null, 2));
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/ckeditor.js b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/ckeditor.js
deleted file mode 100644
index e5cbe8af9..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/ckeditor.js
+++ /dev/null
@@ -1,261 +0,0 @@
-/**
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
-
-/* globals document */
-
-import DecoupledEditor from '../src/ckeditor.js';
-import BaseDecoupledEditor from '@ckeditor/ckeditor5-editor-decoupled/src/decouplededitor.js';
-import { describeMemoryUsage, testMemoryUsage } from '@ckeditor/ckeditor5-core/tests/_utils/memory.js';
-
-describe( 'DecoupledEditor build', () => {
- let editor, editorData, editorElement;
-
- beforeEach( () => {
- editorData = 'foo bar
';
-
- editorElement = document.createElement( 'div' );
- editorElement.innerHTML = editorData;
-
- document.body.appendChild( editorElement );
- } );
-
- afterEach( () => {
- editorElement.remove();
- editor = null;
- } );
-
- describe( 'build', () => {
- it( 'contains plugins', () => {
- expect( DecoupledEditor.builtinPlugins ).to.not.be.empty;
- } );
-
- it( 'contains config', () => {
- expect( DecoupledEditor.defaultConfig.toolbar ).to.not.be.empty;
- } );
- } );
-
- describe( 'editor with data', () => {
- test( () => editorData );
-
- it( 'does not define the UI DOM structure', () => {
- return DecoupledEditor.create( editorData )
- .then( newEditor => {
- expect( newEditor.ui.view.element ).to.be.null;
- expect( newEditor.ui.view.toolbar.element.parentElement ).to.be.null;
- expect( newEditor.ui.view.editable.element.parentElement ).to.be.null;
-
- return newEditor.destroy();
- } );
- } );
- } );
-
- describe( 'editor with editable element', () => {
- test( () => editorElement );
-
- it( 'uses the provided editable element', () => {
- return DecoupledEditor.create( editorElement )
- .then( newEditor => {
- expect( newEditor.ui.view.editable.element.parentElement ).to.equal( document.body );
-
- return newEditor.destroy();
- } );
- } );
- } );
-
- describeMemoryUsage( () => {
- testMemoryUsage(
- 'should not grow on multiple create/destroy',
- () => DecoupledEditor.create( document.querySelector( '#mem-editor' ) ) );
- } );
-
- function test( getEditorDataOrElement ) {
- describe( 'create()', () => {
- beforeEach( () => {
- return DecoupledEditor.create( getEditorDataOrElement() )
- .then( newEditor => {
- editor = newEditor;
- } );
- } );
-
- afterEach( () => {
- return editor.destroy();
- } );
-
- it( 'creates an instance which inherits from the DecoupledEditor', () => {
- expect( editor ).to.be.instanceof( BaseDecoupledEditor );
- expect( editor ).to.be.instanceof( BaseDecoupledEditor );
- } );
-
- it( 'loads passed data', () => {
- expect( editor.getData() ).to.equal( 'foo bar
' );
- } );
- } );
-
- describe( 'destroy()', () => {
- beforeEach( () => {
- return DecoupledEditor.create( getEditorDataOrElement() )
- .then( newEditor => {
- editor = newEditor;
- } );
- } );
- } );
-
- describe( 'plugins', () => {
- beforeEach( () => {
- return DecoupledEditor.create( getEditorDataOrElement() )
- .then( newEditor => {
- editor = newEditor;
- } );
- } );
-
- afterEach( () => {
- return editor.destroy();
- } );
-
- it( 'paragraph works', () => {
- const data = 'Some text inside a paragraph.
';
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
-
- it( 'basic-styles work', () => {
- const data = [
- '',
- 'Test:strong ',
- 'Test:i ',
- 'Test:u ',
- 'Test:s ',
- '
'
- ].join( '' );
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
-
- it( 'block-quote works', () => {
- const data = 'Quote
';
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
-
- it( 'heading works', () => {
- const data = [
- 'Heading 1. ',
- 'Heading 1.1 ',
- 'Heading 1.1.1 ',
- 'Heading 1.1.2 ',
- 'Heading 1.2 ',
- 'Heading 1.2.1 ',
- 'Heading 2 '
- ].join( '' );
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
-
- it( 'image works', () => {
- const data = ' ';
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
-
- it( 'list works', () => {
- const data = [
- '',
- 'Item 1. ',
- 'Item 2. ',
- ' ',
- '',
- 'Item 1. ',
- 'Item 2. ',
- ' '
- ].join( '' );
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
-
- it( 'list style works', () => {
- const data = [
- '' +
- 'Item 1. ' +
- 'Item 2. ' +
- ' '
- ].join( '' );
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
-
- it( 'link works', () => {
- const data = 'CKEditor.com
';
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
-
- it( 'font size works', () => {
- const data = 'foo
';
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- expect( editor.model.document.selection.getAttribute( 'fontSize' ) ).to.equal( 'big' );
- } );
-
- it( 'font family works', () => {
- const data = 'foo
';
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- expect( editor.model.document.selection.getAttribute( 'fontFamily' ) ).to.equal( 'Georgia, serif' );
- } );
-
- it( 'font background color works', () => {
- const data = 'foo
';
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- expect( editor.model.document.selection.getAttribute( 'fontBackgroundColor' ) ).to.equal( 'hsl(60,75%,60%)' );
- } );
-
- it( 'font color works', () => {
- const data = 'foo
';
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- expect( editor.model.document.selection.getAttribute( 'fontColor' ) ).to.equal( 'hsl(0,75%,60%)' );
- } );
-
- it( 'alignment works', () => {
- const data = 'foo
';
-
- editor.setData( data );
- expect( editor.getData() ).to.equal( data );
- } );
- } );
-
- describe( 'config', () => {
- afterEach( () => {
- return editor.destroy();
- } );
-
- // https://github.com/ckeditor/ckeditor5/issues/572
- it( 'allows configure toolbar items through config.toolbar', () => {
- return DecoupledEditor
- .create( getEditorDataOrElement(), {
- toolbar: [ 'bold' ]
- } )
- .then( newEditor => {
- editor = newEditor;
-
- expect( editor.ui.view.toolbar.items.length ).to.equal( 1 );
- } );
- } );
- } );
- }
-} );
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor-cjs-version.html b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor-cjs-version.html
deleted file mode 100644
index 5045d4354..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor-cjs-version.html
+++ /dev/null
@@ -1,74 +0,0 @@
-The toolbar
-
-
-The editable
-
-
-
About CKEditor 5
-
-
This is CKEditor 5 .
-
-
-
-
-
-
After more than 2 years of building the next generation editor from scratch and closing over 980 tickets,
- we created a highly extensible and flexible architecture which consists of an amazing
- editing framework and editing solutions that will be built on top of it.
-
-
We explained this design choice in
- “CKEditor 5:
- The future of rich text editing“ :
-
-
(…) we are changing our approach with CKEditor 5. We will no longer have only two solutions
- available, instead CKEditor will be seen as a framework for editing solutions. At the same time, we will be
- developing several out-of-the-box solutions based on it, which will be available to use in many different contexts.
- It will be a real “one size fits all” approach, from little requirements, to super advanced full featured
- applications.
-
-
Notes
-
-
CKEditor 5 is under heavy development and this demo
- is not production-ready software. For example:
-
-
-
-
It has bugs that we are aware of — and that we will be working on in the next few
- iterations of the project. Stay tuned for some updates soon!
-
-
-
-
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor-cjs-version.js b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor-cjs-version.js
deleted file mode 100644
index 1203501a2..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor-cjs-version.js
+++ /dev/null
@@ -1,19 +0,0 @@
-/**
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
-
-/* eslint-env commonjs */
-/* globals window, document, console */
-
-const DecoupledEditor = require( '../../build/ckeditor' );
-
-DecoupledEditor.create( document.querySelector( '#editor' ) )
- .then( editor => {
- document.querySelector( '.toolbar-container' ).appendChild( editor.ui.view.toolbar.element );
-
- window.editor = editor;
- } )
- .catch( error => {
- console.error( 'There was a problem initializing the editor.', error );
- } );
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor-cjs-version.md b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor-cjs-version.md
deleted file mode 100644
index 945e03176..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor-cjs-version.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# CKEditor 5 document editor build – standard version (CommonJS `require()`)
-
-Just play with it.
-
-**Note:** Remember to rebuild the bundles by running `npm run build` in build's package directory. You can also run webpack in the watch mode:
-
-```
-./node_modules/.bin/webpack -w
-```
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor.html b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor.html
deleted file mode 100644
index 75165d1d8..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor.html
+++ /dev/null
@@ -1,97 +0,0 @@
-The toolbar
-
-
-The editable
-
-
-
About CKEditor 5
-
-
This is CKEditor 5 .
-
-
-
-
-
-
After more than 2 years of building the next generation editor from scratch and closing over 980 tickets,
- we created a highly extensible and flexible architecture which consists of an amazing
- editing framework and editing solutions that will be built on top of it.
-
-
We explained this design choice in
- “CKEditor 5:
- The future of rich text editing“ :
-
-
(…) we are changing our approach with CKEditor 5. We will no longer have only two solutions
- available, instead CKEditor will be seen as a framework for editing solutions. At the same time, we will be
- developing several out-of-the-box solutions based on it, which will be available to use in many different contexts.
- It will be a real “one size fits all” approach, from little requirements, to super advanced full featured
- applications.
-
-
Notes
-
-
CKEditor 5 is under heavy development and this demo
- is not production-ready software. For example:
-
-
- Only Chrome, Opera and Safari are supported .
- Firefox requires enabling the
-
- “dom.select_events.enabled” option.
- Support for pasting
- is under development (content filtering is unstable).
-
-
-
It has bugs that we are aware of — and that we will be working on in the next few
- iterations of the project. Stay tuned for some updates soon!
-
-
-
-
- Version
- Release date
-
-
-
-
- 10.0.1
- May 22, 2018
-
-
- 10.0.0
- April 25, 2018
-
-
- 10.0.0-beta.2
- April 10, 2018
-
-
-
-
-
-
-
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor.js b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor.js
deleted file mode 100644
index 4f65f36ee..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/**
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
-
-/* globals window, document, console */
-
-import DecoupledEditor from '../../build/ckeditor.js';
-
-DecoupledEditor.create( document.querySelector( '#editor' ) )
- .then( editor => {
- document.querySelector( '.toolbar-container' ).appendChild( editor.ui.view.toolbar.element );
-
- window.editor = editor;
- } )
- .catch( error => {
- console.error( 'There was a problem initializing the editor.', error );
- } );
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor.md b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor.md
deleted file mode 100644
index bf8cb9754..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/ckeditor.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# CKEditor 5 document editor build – standard version
-
-Just play with it.
-
-**Note:** Remember to rebuild the bundles by running `npm run build` in build's package directory. You can also run webpack in the watch mode:
-
-```
-./node_modules/.bin/webpack -w
-```
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/sample.jpg b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/sample.jpg
deleted file mode 100644
index b77d07e7b..000000000
Binary files a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tests/manual/sample.jpg and /dev/null differ
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tsconfig.json b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tsconfig.json
deleted file mode 100644
index 204c64840..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tsconfig.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "extends": "ckeditor5/tsconfig.json",
- "include": [
- "src",
- "../../typings"
- ]
-}
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tsconfig.types.json b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tsconfig.types.json
deleted file mode 100644
index 9b51af3cc..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/tsconfig.types.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "extends": "ckeditor5/tsconfig.json",
- "compilerOptions": {
- "declaration": true,
- "emitDeclarationOnly": true,
- "declarationDir": "build",
- "stripInternal": true
- },
- "include": [
- "src",
- "../../typings"
- ]
-}
diff --git a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/webpack.config.cjs b/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/webpack.config.cjs
deleted file mode 100644
index d296b282c..000000000
--- a/_regroup/ckeditor5-build-trilium/packages/ckeditor5-build-trilium/webpack.config.cjs
+++ /dev/null
@@ -1,77 +0,0 @@
-/**
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
-
-'use strict';
-
-/* eslint-env node */
-
-const path = require( 'path' );
-const webpack = require( 'webpack' );
-const { bundler, loaders } = require( '@ckeditor/ckeditor5-dev-utils' );
-const { CKEditorTranslationsPlugin } = require( '@ckeditor/ckeditor5-dev-translations' );
-const TerserPlugin = require( 'terser-webpack-plugin' );
-
-module.exports = {
- devtool: 'source-map',
- performance: { hints: false },
-
- entry: path.resolve( __dirname, 'src', 'ckeditor.ts' ),
-
- output: {
- // The name under which the editor will be exported.
- library: 'CKEditor',
-
- path: path.resolve( __dirname, 'build' ),
- filename: 'ckeditor.js',
- libraryTarget: 'umd',
- libraryExport: 'default'
- },
-
- optimization: {
- minimizer: [
- new TerserPlugin( {
- sourceMap: true,
- terserOptions: {
- output: {
- // Preserve CKEditor 5 license comments.
- comments: /^!/
- }
- },
- extractComments: false
- } )
- ]
- },
-
- plugins: [
- new CKEditorTranslationsPlugin( {
- // UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format.
- // When changing the built-in language, remember to also change it in the editor's configuration (src/ckeditor.js).
- language: 'en',
- additionalLanguages: 'all'
- } ),
- new webpack.BannerPlugin( {
- banner: bundler.getLicenseBanner(),
- raw: true
- } )
- ],
-
- module: {
- rules: [
- loaders.getIconsLoader( { matchExtensionOnly: true } ),
- loaders.getStylesLoader( {
- themePath: require.resolve( '@ckeditor/ckeditor5-theme-lark' ),
- minify: true
- } ),
- loaders.getTypeScriptLoader()
- ]
- },
-
- resolve: {
- extensions: [ '.ts', '.js', '.json' ],
- extensionAlias: {
- '.js': [ '.js', '.ts' ]
- }
- }
-};
diff --git a/packages/ckeditor5/package.json b/packages/ckeditor5/package.json
index 601c1b6c6..8fa77eccc 100644
--- a/packages/ckeditor5/package.json
+++ b/packages/ckeditor5/package.json
@@ -1,6 +1,7 @@
{
"name": "@triliumnext/ckeditor5",
- "version": "0.0.1",
+ "description": "The document editor build of CKEditor 5 – the best browser-based rich text editor.",
+ "version": "43.2.0",
"private": true,
"type": "module",
"main": "./dist/index.js",