bigbinary / neeto-editor

https://neeto-editor.neeto.com
MIT License
14 stars 3 forks source link

Changes the bundling process. #1143

Closed deepakjosp closed 3 weeks ago

deepakjosp commented 1 month ago

Fixes #1131

Description Adds support for modular imports for components. All the components can be imported as a module, whereas utils are available as named imports under the namespace utils.

Before: import { Editor, isEditorEmpty } from "@bigbinary/neeto-editor";

After: import Editor from "@bigbinary/neeto-editor/Editor"; import { isEditorEmpty } from "@bigbinary/neeto-editor/utils";

Checklist

Reviewers

deepakjosp commented 4 weeks ago

@AbhayVAshokan _a please review.