8
0

build-config.js 620 B

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