bundle-config.js 415 B

123456789101112131415161718
  1. /**
  2. * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. module.exports = {
  7. moduleName: 'MyCKEditor',
  8. editor: 'editor-classic/classic.js',
  9. features: [
  10. 'enter',
  11. 'paragraph',
  12. './build/esnext/ckeditor5/typing/typing.js',
  13. './build/esnext/ckeditor5/undo/undo.js',
  14. './build/esnext/ckeditor5/headings/headings.js'
  15. ]
  16. };