8
0

build-config-standard.js 493 B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. module.exports = {
  3. // Name of CKEditor instance exposed as global variable by a bundle.
  4. moduleName: 'ClassicEditor',
  5. // Specify path where bundled editor will be saved.
  6. path: '.',
  7. editor: 'editor-classic/classic',
  8. // List of plugins.
  9. plugins: [
  10. 'autoformat',
  11. 'basic-styles/bold',
  12. 'basic-styles/italic',
  13. 'clipboard',
  14. 'enter',
  15. 'heading',
  16. 'link',
  17. 'list',
  18. 'paragraph',
  19. 'typing',
  20. 'undo'
  21. ],
  22. // The format of the generated bundle.
  23. format: 'iife'
  24. };