Browse Source

Updated default bundle config - added missing parameters.

Kamil Piechaczek 9 years ago
parent
commit
ba4ae7f866
1 changed files with 7 additions and 1 deletions
  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.
 	moduleName: 'ClassicEditor',
 
+	// Specify path where bundled editor will be saved.
+	path: '.',
+
 	editor: 'editor-classic/classic',
 
 	// List of features.
@@ -15,5 +18,8 @@ module.exports = {
 		'headings',
 		'paragraph',
 		'enter'
-	]
+	],
+
+	// The format of the generated bundle.
+	format: 'iife'
 };