ソースを参照

Merge branch 'master' into t/494

Aleksander Nowodzinski 7 年 前
コミット
b5627d4d46

+ 2 - 2
README.md

@@ -219,10 +219,10 @@ For more CKEditor 5 release blog posts [browse the CKEditor blog](https://ckedit
 
 <tr>
 	<td>
-		<a href="https://github.com/ckeditor/ckeditor5-cloudservices"><code>@ckeditor/ckeditor5-cloudservices</code></a>
+		<a href="https://github.com/ckeditor/ckeditor5-cloud-services"><code>@ckeditor/ckeditor5-cloud-services</code></a>
 	</td>
 	<td>
-		<a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-cloudservices"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-cloudservices.svg" alt="@ckeditor/ckeditor5-cloudservices npm package badge"></a>
+		<a href="https://www.npmjs.com/package/@ckeditor/ckeditor5-cloud-services"><img src="https://img.shields.io/npm/v/@ckeditor/ckeditor5-cloud-services.svg" alt="@ckeditor/ckeditor5-cloud-services npm package badge"></a>
 	</td>
 	<td>
 		CKEditor 5's Cloud Services integration layer.

+ 1 - 1
docs/_snippets/examples/balloon-editor.js

@@ -7,7 +7,7 @@
 
 import BalloonEditor from '@ckeditor/ckeditor5-build-balloon/src/ckeditor';
 
-import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
 
 BalloonEditor
 	.create( document.querySelector( '#snippet-balloon-editor' ), {

+ 1 - 1
docs/_snippets/examples/classic-editor-short.js

@@ -5,7 +5,7 @@
 
 /* globals ClassicEditor, console, window, document */
 
-import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
 
 ClassicEditor
 	.create( document.querySelector( '#snippet-classic-editor-short' ), {

+ 1 - 1
docs/_snippets/examples/classic-editor.js

@@ -5,7 +5,7 @@
 
 /* globals ClassicEditor, console, window, document */
 
-import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
 
 ClassicEditor
 	.create( document.querySelector( '#snippet-classic-editor' ), {

+ 1 - 1
docs/_snippets/examples/custom-build.js

@@ -16,7 +16,7 @@ import Code from '@ckeditor/ckeditor5-basic-styles/src/code';
 import Highlight from '@ckeditor/ckeditor5-highlight/src/highlight';
 import EasyImage from '@ckeditor/ckeditor5-easy-image/src/easyimage';
 
-import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
 
 ClassicEditor
 	.create( document.querySelector( '#snippet-custom-build' ), {

+ 1 - 1
docs/_snippets/examples/document-editor.js

@@ -6,7 +6,7 @@
 /* globals console, window, document */
 
 import DecoupledDocumentEditor from '@ckeditor/ckeditor5-build-decoupled-document/src/ckeditor';
-import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
 
 DecoupledDocumentEditor
 	.create( document.querySelector( '.document-editor__data' ).innerHTML, {

+ 1 - 1
docs/_snippets/examples/inline-editor.js

@@ -6,7 +6,7 @@
 /* globals console, window, document */
 
 import InlineEditor from '@ckeditor/ckeditor5-build-inline/src/ckeditor';
-import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
 
 const inlineInjectElements = document.querySelectorAll( '#snippet-inline-editor [data-inline-inject]' );
 

+ 1 - 1
docs/_snippets/features/image-upload.js

@@ -5,7 +5,7 @@
 
 /* globals ClassicEditor, console, window, document */
 
-import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
 
 ClassicEditor
 	.create( document.querySelector( '#snippet-image-upload' ), {

+ 1 - 1
docs/_snippets/features/read-only.js

@@ -5,7 +5,7 @@
 
 /* globals ClassicEditor, console, window, document */
 
-import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
 
 ClassicEditor
 	.create( document.querySelector( '#snippet-read-only' ), {

+ 1 - 1
docs/_snippets/features/ui-language.js

@@ -9,7 +9,7 @@
 
 import ClassicEditor from '@ckeditor/ckeditor5-build-classic/src/ckeditor';
 
-import { CS_CONFIG } from '@ckeditor/ckeditor5-cloudservices/tests/_utils/cloudservices-config';
+import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';
 
 ClassicEditor
 	.create( document.querySelector( '#snippet-ui-language' ), {

+ 1 - 1
docs/builds/guides/integration/configuration.md

@@ -64,7 +64,7 @@ ClassicEditor.build.plugins.map( plugin => plugin.pluginName );
 
 ## Adding features
 
-As CKEditor builds come with all features enabled, the only way to add more features to them is to {@link builds/guides/development/custom-builds create a custom build}.
+As CKEditor builds do not include all possible features, the only way to add more features to them is to {@link builds/guides/development/custom-builds create a custom build}.
 
 ## Toolbar setup
 

ファイルの差分が大きいため隠しています
+ 1 - 1
docs/builds/guides/migrate.md


+ 1 - 1
docs/features/image-upload.md

@@ -38,7 +38,7 @@ Be sure to use image upload plugins with support for responsive images to enjoy
 To make enabling image upload in CKEditor 5 a breeze, by default all builds include the {@link module:easy-image/easyimage~EasyImage `EasyImage` plugin}, which integrates with the Easy Image service provided by [CKEditor Cloud Services](https://ckeditor.com/ckeditor-cloud-services/). Enabling it is straightforward and the results are immediate:
 
 1. Follow {@link @cs guides/quick-start Cloud Services - Quick start} guide to setup an account.
-2. Configure CKEditor (see {@link module:cloudservices/cloudservices~CloudServicesConfig `CloudServicesConfig`}):
+2. Configure CKEditor (see {@link module:cloud-services/cloudservices~CloudServicesConfig `CloudServicesConfig`}):
 
 	```js
 	ClassicEditor

+ 1 - 1
mgit.json

@@ -12,7 +12,7 @@
     "@ckeditor/ckeditor5-build-decoupled-document": "ckeditor/ckeditor5-build-decoupled-document",
     "@ckeditor/ckeditor5-build-inline": "ckeditor/ckeditor5-build-inline",
     "@ckeditor/ckeditor5-clipboard": "ckeditor/ckeditor5-clipboard",
-    "@ckeditor/ckeditor5-cloudservices": "ckeditor/ckeditor5-cloudservices",
+    "@ckeditor/ckeditor5-cloud-services": "ckeditor/ckeditor5-cloud-services",
     "@ckeditor/ckeditor5-core": "ckeditor/ckeditor5-core",
     "@ckeditor/ckeditor5-easy-image": "ckeditor/ckeditor5-easy-image",
     "@ckeditor/ckeditor5-editor-balloon": "ckeditor/ckeditor5-editor-balloon",

+ 4 - 4
package.json

@@ -23,7 +23,7 @@
     "@ckeditor/ckeditor5-build-decoupled-document": "^1.0.0-beta.1",
     "@ckeditor/ckeditor5-build-inline": "^1.0.0-beta.1",
     "@ckeditor/ckeditor5-clipboard": "^1.0.0-beta.1",
-    "@ckeditor/ckeditor5-cloudservices": "^1.0.0-beta.1",
+    "@ckeditor/ckeditor5-cloud-services": "^1.0.0-beta.1",
     "@ckeditor/ckeditor5-core": "^1.0.0-beta.1",
     "@ckeditor/ckeditor5-easy-image": "^1.0.0-beta.1",
     "@ckeditor/ckeditor5-editor-balloon": "^1.0.0-beta.1",
@@ -62,14 +62,14 @@
     "glob": "^7.1.2",
     "husky": "^0.14.3",
     "lerna": "^2.2.0",
-    "lint-staged": "^6.0.0",
+    "lint-staged": "^7.0.0",
     "mgit2": "^0.7.2",
     "minimatch": "^3.0.4",
     "postcss-loader": "^2.0.10",
     "raw-loader": "^0.5.1",
-    "style-loader": "^0.19.1",
+    "style-loader": "^0.20.3",
     "umberto": "^0.4.0",
-    "webpack": "^3.10.0",
+    "webpack": "^3.11.0",
     "webpack-sources": "1.0.1"
   },
   "engines": {