Skip to content

Commit 8e0cc4f

Browse files
authoredMar 26, 2025··
chore: upgrade unified dependencies (#1559)
* upgrade unified ecosystem * processSync * fix build * update snap
1 parent 34ae5f6 commit 8e0cc4f

File tree

10 files changed

+7614
-3118
lines changed

10 files changed

+7614
-3118
lines changed
 

‎package-lock.json

+7,516-3,091
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/core/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -89,23 +89,23 @@
8989
"@tiptap/extension-underline": "^2.11.5",
9090
"@tiptap/pm": "^2.11.5",
9191
"emoji-mart": "^5.6.0",
92-
"hast-util-from-dom": "^4.2.0",
92+
"hast-util-from-dom": "^5.0.1",
9393
"prosemirror-dropcursor": "^1.8.1",
9494
"prosemirror-highlight": "^0.13.0",
9595
"prosemirror-model": "^1.24.1",
9696
"prosemirror-state": "^1.4.3",
9797
"prosemirror-tables": "^1.6.4",
9898
"prosemirror-transform": "^1.10.2",
9999
"prosemirror-view": "^1.38.1",
100-
"rehype-format": "^5.0.0",
101-
"rehype-parse": "^8.0.4",
102-
"rehype-remark": "^9.1.2",
103-
"rehype-stringify": "^9.0.3",
104-
"remark-gfm": "^3.0.1",
105-
"remark-parse": "^10.0.1",
106-
"remark-rehype": "^10.1.0",
107-
"remark-stringify": "^10.0.2",
108-
"unified": "^10.1.2",
100+
"rehype-format": "^5.0.1",
101+
"rehype-parse": "^9.0.1",
102+
"rehype-remark": "^10.0.0",
103+
"rehype-stringify": "^10.0.1",
104+
"remark-gfm": "^4.0.1",
105+
"remark-parse": "^11.0.0",
106+
"remark-rehype": "^11.1.1",
107+
"remark-stringify": "^11.0.0",
108+
"unified": "^11.0.5",
109109
"uuid": "^8.3.2",
110110
"y-prosemirror": "1.2.17",
111111
"y-protocols": "^1.0.6",

‎packages/core/src/api/exporters/markdown/__snapshots__/complex/misc/markdown.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## **Heading ***~~2~~*
1+
## **Heading ***~~2~~*
22

33
Paragraph
44

Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
* Bullet List Item 1
2-
* Bullet List Item 2
1+
* Bullet List Item 1
32

4-
1. Numbered List Item 1
5-
2. Numbered List Item 2
3+
* Bullet List Item 2
64

7-
* [ ] Check List Item 1
8-
* [x] Check List Item 2
5+
1. Numbered List Item 1
6+
7+
2. Numbered List Item 2
8+
9+
* [ ] Check List Item 1
10+
* [x] Check List Item 2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
* Bullet List Item 1
1+
* Bullet List Item 1
22

3-
* Bullet List Item 2
3+
* Bullet List Item 2
44

5-
1. Numbered List Item 1
5+
1. Numbered List Item 1
66

7-
2. Numbered List Item 2
7+
2. Numbered List Item 2
88

9-
* [ ] Check List Item 1
10-
* [x] Check List Item 2
9+
* [ ] Check List Item 1
10+
* [x] Check List Item 2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[
2+
{
3+
"id": "0",
4+
"type": "paragraph",
5+
"props": {
6+
"textColor": "default",
7+
"backgroundColor": "default",
8+
"textAlignment": "left"
9+
},
10+
"content": [
11+
{
12+
"type": "text",
13+
"text": "hello ",
14+
"styles": {}
15+
},
16+
{
17+
"type": "text",
18+
"text": "beautiful ",
19+
"styles": {
20+
"bold": true
21+
}
22+
},
23+
{
24+
"type": "text",
25+
"text": " world",
26+
"styles": {}
27+
}
28+
],
29+
"children": []
30+
},
31+
{
32+
"id": "2",
33+
"type": "paragraph",
34+
"props": {
35+
"textColor": "default",
36+
"backgroundColor": "default",
37+
"textAlignment": "left"
38+
},
39+
"content": [],
40+
"children": []
41+
}
42+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[
2+
{
3+
"id": "1",
4+
"type": "paragraph",
5+
"props": {
6+
"textColor": "default",
7+
"backgroundColor": "default",
8+
"textAlignment": "left"
9+
},
10+
"content": [
11+
{
12+
"type": "text",
13+
"text": "hello **beautiful ** world",
14+
"styles": {}
15+
}
16+
],
17+
"children": []
18+
}
19+
]

‎packages/core/src/api/parsers/markdown/parseMarkdown.test.ts

+5
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ P*ara*~~grap~~h
9999
* Bullet List Item`;
100100
await parseMarkdownAndCompareSnapshots(markdown, "complex");
101101
});
102+
103+
it("whitespace bold", async () => {
104+
const markdown = `hello **beautiful ** world`;
105+
await parseMarkdownAndCompareSnapshots(markdown, "whitespace bold");
106+
});
102107
});
103108

104109
describe("Issue 226", () => {

‎packages/core/src/api/parsers/markdown/parseMarkdown.ts

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export async function markdownToBlocks<
6060
pmSchema: Schema
6161
): Promise<Block<BSchema, I, S>[]> {
6262
const deps = await initializeESMDependencies();
63+
6364
const htmlString = deps.unified
6465
.unified()
6566
.use(deps.remarkParse.default)

‎packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap

+6-4
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@ exports[`Test ServerBlockNoteEditor > converts to and from HTML (blocksToHTMLLos
128128
`;
129129
130130
exports[`Test ServerBlockNoteEditor > converts to and from markdown (blocksToMarkdownLossy) 1`] = `
131-
"## **Heading ***~~2~~*
131+
"## **Heading&#x20;***~~2~~*
132132
133133
Paragraph
134134
135-
* list item
135+
* list item
136136
137137
![Example](exampleURL)
138138
@@ -150,8 +150,10 @@ exports[`Test ServerBlockNoteEditor > converts to and from markdown (blocksToMar
150150
"children": [],
151151
"content": [
152152
{
153-
"styles": {},
154-
"text": "**Heading **",
153+
"styles": {
154+
"bold": true,
155+
},
156+
"text": "Heading ",
155157
"type": "text",
156158
},
157159
{

0 commit comments

Comments
 (0)
Please sign in to comment.