@ckeditor/ckeditor5-font 43.3.1 → 44.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -7
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -3,7 +3,7 @@ CKEditor 5 font feature
3
3
 
4
4
  [![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-font.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-font)
5
5
  [![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
6
- [![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://app.travis-ci.com/github/ckeditor/ckeditor5)
6
+ [![CircleCI](https://circleci.com/gh/ckeditor/ckeditor5.svg?style=shield)](https://app.circleci.com/pipelines/github/ckeditor/ckeditor5?branch=master)
7
7
 
8
8
  This package implements support for the following CKEditor 5 features:
9
9
 
@@ -12,6 +12,18 @@ This package implements support for the following CKEditor 5 features:
12
12
  * font color,
13
13
  * font background color.
14
14
 
15
+ ## Installation
16
+
17
+ This plugin is part of the `ckeditor5` package. Install the whole package to use it.
18
+
19
+ ```bash
20
+ npm install ckeditor5
21
+ ```
22
+
23
+ ## Create free account
24
+
25
+ If you want to check full CKEditor 5 capabilities, sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/signup).
26
+
15
27
  ## Demo
16
28
 
17
29
  Check out the [demo in the font feature guide](https://ckeditor.com/docs/ckeditor5/latest/features/font.html#demo).
@@ -20,12 +32,6 @@ Check out the [demo in the font feature guide](https://ckeditor.com/docs/ckedito
20
32
 
21
33
  See the [`@ckeditor/ckeditor5-font` package](https://ckeditor.com/docs/ckeditor5/latest/api/font.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
22
34
 
23
- ## Installation
24
-
25
- ```bash
26
- npm install ckeditor5
27
- ```
28
-
29
35
  ## License
30
36
 
31
37
  Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). For full details about the license, please check the `LICENSE.md` file or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-font",
3
- "version": "43.3.1",
3
+ "version": "44.0.0-alpha.0",
4
4
  "description": "Font feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,11 +13,11 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "43.3.1",
17
- "@ckeditor/ckeditor5-engine": "43.3.1",
18
- "@ckeditor/ckeditor5-ui": "43.3.1",
19
- "@ckeditor/ckeditor5-utils": "43.3.1",
20
- "ckeditor5": "43.3.1"
16
+ "@ckeditor/ckeditor5-core": "44.0.0-alpha.0",
17
+ "@ckeditor/ckeditor5-engine": "44.0.0-alpha.0",
18
+ "@ckeditor/ckeditor5-ui": "44.0.0-alpha.0",
19
+ "@ckeditor/ckeditor5-utils": "44.0.0-alpha.0",
20
+ "ckeditor5": "44.0.0-alpha.0"
21
21
  },
22
22
  "author": "CKSource (http://cksource.com/)",
23
23
  "license": "GPL-2.0-or-later",