Skip to content

Commit

Permalink
Merge pull request #27 from editor-js/fix-reexport
Browse files Browse the repository at this point in the history
bugfix (helpers): fix circular reexport
  • Loading branch information
e11sy authored Nov 6, 2024
2 parents 2ba780f + 95a10c8 commit c566cf5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/caret/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Utils useful for work with caret for Editor.js tools development",
"repository": "https://github.com/editor-js/utils/tree/main/packages/caret",
"link": "https://github.com/editor-js/utils/tree/main/packages/caret",
"version": "1.0.2",
"version": "1.0.3",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Utils useful for work with dom for Editor.js tools development",
"repository": "https://github.com/editor-js/utils/tree/main/packages/dom",
"link": "https://github.com/editor-js/utils/tree/main/packages/dom",
"version": "1.0.0",
"version": "1.0.1",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Utils useful for Editor.js tools development",
"repository": "https://github.com/editor-js/utils/tree/main/packages/helpers",
"link": "https://github.com/editor-js/utils/tree/main/packages/helpers",
"version": "1.0.0",
"version": "1.0.1",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/helpers/src/empty/isEmpty.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { notEmpty } from '.';
import { notEmpty } from './notEmpty';

/**
* True if passed variable is null/undefined/''/{}
Expand Down

0 comments on commit c566cf5

Please sign in to comment.