-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix/enforce-type-imports-so-that-bundler-ignores-types (#6132)
* fix: enforce type imports so that the bundler ignores types * chore: add changeset * fix: export types with export type keyword
- Loading branch information
1 parent
ff8a24a
commit 89bd9c7
Showing
259 changed files
with
664 additions
and
500 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
'tiptap-2-migrate-imports': patch | ||
'tiptap-demos': patch | ||
'@tiptap/core': patch | ||
'@tiptap/extension-blockquote': patch | ||
'@tiptap/extension-bold': patch | ||
'@tiptap/extension-bubble-menu': patch | ||
'@tiptap/extension-bullet-list': patch | ||
'@tiptap/extension-character-count': patch | ||
'@tiptap/extension-code': patch | ||
'@tiptap/extension-code-block': patch | ||
'@tiptap/extension-code-block-lowlight': patch | ||
'@tiptap/extension-collaboration': patch | ||
'@tiptap/extension-collaboration-cursor': patch | ||
'@tiptap/extension-color': patch | ||
'@tiptap/extension-document': patch | ||
'@tiptap/extension-dropcursor': patch | ||
'@tiptap/extension-floating-menu': patch | ||
'@tiptap/extension-focus': patch | ||
'@tiptap/extension-font-family': patch | ||
'@tiptap/extension-gapcursor': patch | ||
'@tiptap/extension-hard-break': patch | ||
'@tiptap/extension-heading': patch | ||
'@tiptap/extension-highlight': patch | ||
'@tiptap/extension-history': patch | ||
'@tiptap/extension-horizontal-rule': patch | ||
'@tiptap/extension-image': patch | ||
'@tiptap/extension-italic': patch | ||
'@tiptap/extension-link': patch | ||
'@tiptap/extension-list': patch | ||
'@tiptap/extension-list-item': patch | ||
'@tiptap/extension-list-keymap': patch | ||
'@tiptap/extension-mention': patch | ||
'@tiptap/extension-ordered-list': patch | ||
'@tiptap/extension-paragraph': patch | ||
'@tiptap/extension-placeholder': patch | ||
'@tiptap/extension-strike': patch | ||
'@tiptap/extension-subscript': patch | ||
'@tiptap/extension-superscript': patch | ||
'@tiptap/extension-table': patch | ||
'@tiptap/extension-table-cell': patch | ||
'@tiptap/extension-table-header': patch | ||
'@tiptap/extension-table-row': patch | ||
'@tiptap/extension-task-item': patch | ||
'@tiptap/extension-task-list': patch | ||
'@tiptap/extension-text': patch | ||
'@tiptap/extension-text-align': patch | ||
'@tiptap/extension-text-style': patch | ||
'@tiptap/extension-typography': patch | ||
'@tiptap/extension-underline': patch | ||
'@tiptap/extension-youtube': patch | ||
'@tiptap/extensions': patch | ||
'@tiptap/html': patch | ||
'@tiptap/pm': patch | ||
'@tiptap/react': patch | ||
'@tiptap/starter-kit': patch | ||
'@tiptap/static-renderer': patch | ||
'@tiptap/suggestion': patch | ||
'@tiptap/vue-2': patch | ||
'@tiptap/vue-3': patch | ||
--- | ||
|
||
Enforce type imports so that the bundler ignores TypeScript type imports when generating the index.js file of the dist directory |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
4 changes: 2 additions & 2 deletions
4
demos/src/Experiments/CollaborationAnnotation/Vue/extension/AnnotationPlugin.ts
This file contains 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
6 changes: 3 additions & 3 deletions
6
demos/src/Experiments/CollaborationAnnotation/Vue/extension/AnnotationState.ts
This file contains 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
2 changes: 1 addition & 1 deletion
2
demos/src/Experiments/CollaborationAnnotation/Vue/extension/collaboration-annotation.ts
This file contains 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
This file contains 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
This file contains 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
5 changes: 3 additions & 2 deletions
5
demos/src/Experiments/Linter/Vue/extension/plugins/HeadingLevel.ts
This file contains 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
5 changes: 3 additions & 2 deletions
5
demos/src/Experiments/Linter/Vue/extension/plugins/Punctuation.ts
This file contains 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
This file contains 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
This file contains 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
3 changes: 2 additions & 1 deletion
3
demos/src/GuideNodeViews/ReactComponentContext/React/Component.tsx
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
7 changes: 4 additions & 3 deletions
7
demos/src/Tutorials/1-2-tiptap_lexical/Lexical-React/Note.tsx
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.