瀏覽代碼

Updated default bundle config - added missing parameters.

Kamil Piechaczek 9 年之前
父節點
當前提交
ba4ae7f866
共有 1 個文件被更改,包括 7 次插入1 次删除
  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'
 };