Explorar el Código

Updated default bundle config - added missing parameters.

Kamil Piechaczek hace 9 años
padre
commit
ba4ae7f866
Se han modificado 1 ficheros con 7 adiciones y 1 borrados
  1. 7 1
      dev/bundles/build-config-standard.js

+ 7 - 1
dev/bundles/build-config-standard.js

@@ -4,6 +4,9 @@ module.exports = {
 	// Name of CKEditor instance exposed as global variable by a bundle.
 	// Name of CKEditor instance exposed as global variable by a bundle.
 	moduleName: 'ClassicEditor',
 	moduleName: 'ClassicEditor',
 
 
+	// Specify path where bundled editor will be saved.
+	path: '.',
+
 	editor: 'editor-classic/classic',
 	editor: 'editor-classic/classic',
 
 
 	// List of features.
 	// List of features.
@@ -15,5 +18,8 @@ module.exports = {
 		'headings',
 		'headings',
 		'paragraph',
 		'paragraph',
 		'enter'
 		'enter'
-	]
+	],
+
+	// The format of the generated bundle.
+	format: 'iife'
 };
 };