Răsfoiți Sursa

Other: Move FontSizeEditing to font/fontsize module.

Maciej Gołaszewski 8 ani în urmă
părinte
comite
e2beb9eff5

+ 1 - 1
packages/ckeditor5-font/src/fontsize.js

@@ -8,7 +8,7 @@
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
-import FontSizeEditing from './fontsizeediting';
+import FontSizeEditing from './fontsize/fontsizeediting';
 
 /**
  * The Font Size plugin.

+ 1 - 1
packages/ckeditor5-font/src/fontsizeediting.js → packages/ckeditor5-font/src/fontsize/fontsizeediting.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module font/fontsizeediting
+ * @module font/fontsize/fontsizeediting
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';

+ 1 - 1
packages/ckeditor5-font/tests/fontsize.js

@@ -4,7 +4,7 @@
  */
 
 import FontSize from './../src/fontsize';
-import FontSizeEditing from './../src/fontsizeediting';
+import FontSizeEditing from './../src/fontsize/fontsizeediting';
 
 describe( 'FontSize', () => {
 	it( 'requires FontSizeEditing', () => {

+ 1 - 1
packages/ckeditor5-font/tests/fontsizeediting.js → packages/ckeditor5-font/tests/fontsize/fontsizeediting.js

@@ -3,7 +3,7 @@
  * For licensing, see LICENSE.md.
  */
 
-import FontSizeEditing from './../src/fontsizeediting';
+import FontSizeEditing from './../../src/fontsize/fontsizeediting';
 
 import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';