瀏覽代碼

Correct folder name with normalizers.

Mateusz Samsel 6 年之前
父節點
當前提交
e58d5e369a

packages/ckeditor5-paste-from-office/src/normalizers/googledocs.js → packages/ckeditor5-paste-from-office/src/normalizer/googledocs.js


packages/ckeditor5-paste-from-office/src/normalizers/msword.js → packages/ckeditor5-paste-from-office/src/normalizer/msword.js


+ 2 - 2
packages/ckeditor5-paste-from-office/src/pastefromoffice.js

@@ -9,8 +9,8 @@
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 
-import GoogleDocsNormalizer from './normalizers/googledocs';
-import MSWordNormalizer from './normalizers/msword';
+import GoogleDocsNormalizer from './normalizer/googledocs';
+import MSWordNormalizer from './normalizer/msword';
 import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
 
 /**

+ 1 - 1
packages/ckeditor5-paste-from-office/tests/normalizers/googledocs.js

@@ -3,7 +3,7 @@
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
-import GoogleDocsNormalizer from '../../src/normalizers/googledocs';
+import GoogleDocsNormalizer from '../../src/normalizer/googledocs';
 
 // exec() of the google docs normalizer is tested with autogenerated normalization tests.
 describe( 'PasteFromOffice/normalizers/googledocs', () => {

+ 1 - 1
packages/ckeditor5-paste-from-office/tests/normalizers/msword.js

@@ -3,7 +3,7 @@
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
-import MSWordNormalizer from '../../src/normalizers/msword';
+import MSWordNormalizer from '../../src/normalizer/msword';
 
 // `exec()` of the msword normalizer is tested with autogenerated normalization tests.
 describe( 'PasteFromOffice/normalizers/msword', () => {