diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3ced3167..e0bafdc4 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### 2.26.5 + +- `Fix` — *Types* — Remove unnecessary import that creates a dependency on the `cypress`. + ### 2.26.4 - `Improvement` — *Menu Config* — Property `label` renamed to `title`. diff --git a/package.json b/package.json index 42092af3..d34d9fd0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@editorjs/editorjs", - "version": "2.26.4", + "version": "2.26.5", "description": "Editor.js — Native JS, based on API and Open Source", "main": "dist/editor.js", "types": "./types/index.d.ts", diff --git a/types/configs/index.d.ts b/types/configs/index.d.ts index d1d20a7e..3b847a31 100644 --- a/types/configs/index.d.ts +++ b/types/configs/index.d.ts @@ -1,5 +1,3 @@ -import { fromCallback } from 'cypress/types/bluebird'; - export * from './editor-config'; export * from './sanitizer-config'; export * from './paste-config';