Skip to content

Commit

Permalink
Review Requests.
Browse files Browse the repository at this point in the history
  • Loading branch information
przemyslaw-zan committed Aug 2, 2022
1 parent 6962250 commit bf217e0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,20 @@
"@types/ckeditor__ckeditor5-autoformat": "^31.0.1",
"@types/ckeditor__ckeditor5-basic-styles": "^28.0.2",
"@types/ckeditor__ckeditor5-block-quote": "^29.0.4",
"@types/ckeditor__ckeditor5-code-block": "^29.0.3",
"@types/ckeditor__ckeditor5-core": "^33.0.3",
"@types/ckeditor__ckeditor5-editor-classic": "^27.1.2",
"@types/ckeditor__ckeditor5-essentials": "^28.0.3",
"@types/ckeditor__ckeditor5-heading": "^29.0.3",
"@types/ckeditor__ckeditor5-image": "^33.0.0",
"@types/ckeditor__ckeditor5-indent": "^29.0.3",
"@types/ckeditor__ckeditor5-link": "^32.0.3",
"@types/ckeditor__ckeditor5-list": "^32.0.1",
"@types/ckeditor__ckeditor5-ui": "^32.0.2",
"@types/ckeditor__ckeditor5-media-embed": "^29.0.3",
"@types/ckeditor__ckeditor5-paragraph": "^27.0.5",
"@types/ckeditor__ckeditor5-table": "^33.0.0",
"@types/ckeditor__ckeditor5-upload": "^27.0.7",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ import Code from '@ckeditor/ckeditor5-basic-styles/src/code';

import MyPlugin from '../src/myplugin';

/* global document, window */

ClassicEditor
.create( document.getElementById( 'editor' )!, {
plugins: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
]
},
"include": [
"sample",
"src",
"tests",
"typings"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
/**
* @license Copyright (c) 2022-2022, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md.
*/

declare module '@ckeditor/ckeditor5-inspector' {
const inspector: {
attach( editor: any ): void; /* eslint-disable-line no-unused-vars */
attach( editor: any ): void;
};

export default inspector;
Expand Down

0 comments on commit bf217e0

Please sign in to comment.