⬆️ Bump @reedsy/quill-delta - #64
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Quill package to use the new named-export API from @reedsy/quill-delta after a major bump that removes default exports, and aligns the dependency graph accordingly.
Changes:
- Replace default imports of
Deltawith named imports ({ Delta }) across Quill source and tests. - Update table embed logic to use
AttributeMap.*instead ofDelta.AttributeMap.*. - Bump
@reedsy/quill-deltaversion, remove the redundantquill-deltadependency, and update the lockfile.
Reviewed changes
Copilot reviewed 34 out of 35 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| packages/quill/test/unit/modules/tableEmbed.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/modules/table.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/modules/syntax.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/modules/history.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/modules/clipboard.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/formats/table.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/formats/list.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/formats/link.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/formats/indent.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/formats/header.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/formats/color.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/formats/code.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/formats/align.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/core/quill.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/core/editor.spec.ts | Switch Delta import to named export. |
| packages/quill/test/unit/blots/scroll.spec.ts | Switch Delta import to named export. |
| packages/quill/test/types/quill.test-d.ts | Update Delta import to @reedsy/quill-delta named export. |
| packages/quill/test/fuzz/tableEmbed.spec.ts | Switch Delta import to named export. |
| packages/quill/test/fuzz/editor.spec.ts | Switch Delta/AttributeMap imports to named exports. |
| packages/quill/src/modules/uploader.ts | Switch Delta import to named export. |
| packages/quill/src/modules/toolbar.ts | Switch Delta import to named export. |
| packages/quill/src/modules/tableEmbed.ts | Update imports and replace Delta.AttributeMap.* calls with AttributeMap.*. |
| packages/quill/src/modules/table.ts | Switch Delta import to named export. |
| packages/quill/src/modules/syntax.ts | Switch Delta import to named export. |
| packages/quill/src/modules/keyboard.ts | Switch Delta/AttributeMap imports to named exports. |
| packages/quill/src/modules/input.ts | Switch Delta import to named export. |
| packages/quill/src/modules/history.ts | Update Delta type import to named export. |
| packages/quill/src/modules/clipboard.ts | Switch Delta import to named export. |
| packages/quill/src/core/quill.ts | Switch Delta import to named export. |
| packages/quill/src/core/editor.ts | Switch Delta/AttributeMap/Op imports to named exports. |
| packages/quill/src/core.ts | Switch Delta/Op/OpIterator/AttributeMap imports to named exports and re-export them. |
| packages/quill/src/blots/scroll.ts | Switch Delta/AttributeMap/Op imports to named exports. |
| packages/quill/src/blots/block.ts | Switch Delta import to named export. |
| packages/quill/package.json | Bump @reedsy/quill-delta, remove quill-delta, and bump package version. |
| package-lock.json | Update lockfile for bumped/removal deps (includes additional lockfile churn). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This change bumps our version of `@reedsy/quill-delta` through a major bump that removes export defaults.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change bumps our version of
@reedsy/quill-deltathrough a major bump that removes export defaults.