Browse Source

Merge branch 'master' into t/41

Maksymilian Barnaś 9 years ago
parent
commit
a2dc083b11
2 changed files with 21 additions and 1 deletions
  1. 20 0
      dev/tasks/bundle/build-config-standard.js
  2. 1 1
      package.json

+ 20 - 0
dev/tasks/bundle/build-config-standard.js

@@ -0,0 +1,20 @@
+'use strict';
+
+module.exports = {
+	// Name of CKEditor instance exposed as global variable by a bundle.
+	moduleName: 'ClassicEditor',
+
+	editor: 'editor-classic/classic',
+
+	// List of features.
+	features: [
+		'delete',
+		'typing',
+		'undo',
+		'basic-styles/bold',
+		'basic-styles/italic',
+		'headings',
+		'paragraph',
+		'enter'
+	]
+};

+ 1 - 1
package.json

@@ -85,7 +85,7 @@
     "through2": "^2.0.0"
   },
   "engines": {
-    "node": ">=5.0.0",
+    "node": ">=6.0.0",
     "npm": ">=3.0.0"
   },
   "author": "CKSource (http://cksource.com/)",