build-indent-source.js 650 B

123456789101112131415161718
  1. /**
  2. * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. /* globals window */
  6. import ClassicEditor from '@ckeditor/ckeditor5-build-classic/src/ckeditor';
  7. import Indent from '@ckeditor/ckeditor5-indent/src/indent';
  8. import IndentBlock from '@ckeditor/ckeditor5-indent/src/indentblock';
  9. import Code from '@ckeditor/ckeditor5-basic-styles/src/code';
  10. ClassicEditor.builtinPlugins.push( Indent );
  11. ClassicEditor.builtinPlugins.push( IndentBlock );
  12. ClassicEditor.builtinPlugins.push( Code );
  13. window.ClassicEditor = ClassicEditor;