@tiptap/y-tiptap 3.0.0-beta.3 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,6 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
This binding maps a Y.XmlFragment to the ProseMirror state.
|
|
6
6
|
|
|
7
|
+
## Why was this package forked from [y-prosemirror](https://github.com/yjs/y-prosemirror)?
|
|
8
|
+
|
|
9
|
+
We forked y-prosemirror to create a Tiptap-specific package with changes we needed for Tiptap-related features. These modifications were too specific to be merged upstream or would have added maintenance overhead for the y-prosemirror maintainers.
|
|
10
|
+
|
|
11
|
+
Where feasible, we contribute improvements and fixes back to y-prosemirror to support the broader ecosystem.
|
|
12
|
+
|
|
13
|
+
This package is designed for use with Tiptap and is not intended as a general-purpose Yjs binding for ProseMirror.
|
|
14
|
+
|
|
7
15
|
## Features
|
|
8
16
|
|
|
9
17
|
* Sync ProseMirror state
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/y-tiptap",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Tiptap prosemirror bindings for Yjs",
|
|
5
5
|
"main": "./dist/y-tiptap.cjs",
|
|
6
6
|
"module": "./src/y-tiptap.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"debug": "concurrently '0serve -o test.html' 'npm run watch'",
|
|
17
17
|
"preversion": "npm run lint && npm run dist && npm run test",
|
|
18
18
|
"publish": "npm run preversion && npm publish --access public",
|
|
19
|
-
"publish:pre": "npm run preversion && npm publish --access public --tag
|
|
19
|
+
"publish:pre": "npm run preversion && npm publish --access public --tag beta",
|
|
20
20
|
"start": "concurrently '0serve -o demo/prosemirror.html' 'npm run watch'"
|
|
21
21
|
},
|
|
22
22
|
"exports": {
|