Ver código fonte

Add TextTransformation plugin to the build config

panr 5 anos atrás
pai
commit
600ab43c89

+ 1 - 0
packages/ckeditor5-build-classic/package.json

@@ -45,6 +45,7 @@
     "@ckeditor/ckeditor5-paragraph": "^17.0.0",
     "@ckeditor/ckeditor5-paste-from-office": "^17.0.0",
     "@ckeditor/ckeditor5-table": "^17.0.0",
+    "@ckeditor/ckeditor5-typing": "^17.0.0",
     "@ckeditor/ckeditor5-theme-lark": "^17.0.0",
     "eslint": "^5.5.0",
     "eslint-config-ckeditor5": "^2.0.0",

+ 3 - 1
packages/ckeditor5-build-classic/src/ckeditor.js

@@ -28,6 +28,7 @@ import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
 import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice';
 import Table from '@ckeditor/ckeditor5-table/src/table';
 import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';
+import TextTransformation from '@ckeditor/ckeditor5-typing/src/texttransformation';
 
 export default class ClassicEditor extends ClassicEditorBase {}
 
@@ -54,7 +55,8 @@ ClassicEditor.builtinPlugins = [
 	Paragraph,
 	PasteFromOffice,
 	Table,
-	TableToolbar
+	TableToolbar,
+	TextTransformation
 ];
 
 // Editor configuration.