8
0
فهرست منبع

Removed bundle config file.

Oskar Wrobel 9 سال پیش
والد
کامیت
2c25569f98
2فایلهای تغییر یافته به همراه1 افزوده شده و 19 حذف شده
  1. 1 1
      dev/tasks/build/utils.js
  2. 0 18
      dev/tasks/bundle/bundle-config.js

+ 1 - 1
dev/tasks/build/utils.js

@@ -165,7 +165,7 @@ require( [ 'tests' ], bender.defer(), function( err ) {
 			plugins: utils.getBabelPlugins( format ),
 			// Ensure that all paths ends with '.js' because Require.JS (unlike Common.JS/System.JS)
 			// will not add it to module names which look like paths.
-			resolveModuleSource: format == 'cjs' ? utils.resolveModuleSource : utils.appendModuleExtension,
+			resolveModuleSource: format == 'cjs' ? utils.resolveModuleSource : utils.appendModuleExtension
 		};
 	},
 

+ 0 - 18
dev/tasks/bundle/bundle-config.js

@@ -1,18 +0,0 @@
-/**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
-
-'use strict';
-
-module.exports = {
-	moduleName: 'MyCKEditor',
-	editor: 'editor-classic/classic.js',
-	features: [
-		'enter',
-		'paragraph',
-		'./build/esnext/ckeditor5/typing/typing.js',
-		'./build/esnext/ckeditor5/undo/undo.js',
-		'./build/esnext/ckeditor5/headings/headings.js'
-	]
-};