Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine committed Apr 7, 2024
1 parent d57ec9d commit 92b0adf
Show file tree
Hide file tree
Showing 5 changed files with 1,833 additions and 1,118 deletions.
3 changes: 3 additions & 0 deletions __tests__/__snapshots__/parse.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ exports[`parse > marks > link > html 1`] = `
"attrs": {
"class": null,
"href": "http://example.org",
"rel": "noopener noreferrer nofollow",
"target": "_blank",
},
"type": "link",
Expand All @@ -148,6 +149,7 @@ exports[`parse > marks > link > markdown 1`] = `
"attrs": {
"class": null,
"href": "http://example.org",
"rel": "noopener noreferrer nofollow",
"target": "_blank",
},
"type": "link",
Expand All @@ -172,6 +174,7 @@ exports[`parse > marks > link > markdown with linkify 1`] = `
"attrs": {
"class": null,
"href": "http://example.org",
"rel": "noopener noreferrer nofollow",
"target": "_blank",
},
"type": "link",
Expand Down
26 changes: 21 additions & 5 deletions __tests__/__snapshots__/serialize.spec.js.snap
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`serialize > nodes > table > header in body 1`] = `
<table>
<table style="minWidth: 25px">
<colgroup>
<col>
</colgroup>
<tbody>
<tr>
<th colspan="1"
Expand All @@ -26,7 +29,10 @@ exports[`serialize > nodes > table > header in body 1`] = `
`;
exports[`serialize > nodes > table > multiline cell 1`] = `
<table>
<table style="minWidth: 25px">
<colgroup>
<col>
</colgroup>
<tbody>
<tr>
<th colspan="1"
Expand All @@ -45,7 +51,10 @@ exports[`serialize > nodes > table > multiline cell 1`] = `
`;
exports[`serialize > nodes > table > no header 1`] = `
<table>
<table style="minWidth: 25px">
<colgroup>
<col>
</colgroup>
<tbody>
<tr>
<td colspan="1"
Expand All @@ -70,7 +79,11 @@ exports[`serialize > nodes > table > no header 1`] = `
`;
exports[`serialize > nodes > table > with colspan 1`] = `
<table>
<table style="minWidth: 50px">
<colgroup>
<col>
<col>
</colgroup>
<tbody>
<tr>
<th colspan="2"
Expand All @@ -86,7 +99,10 @@ exports[`serialize > nodes > table > with colspan 1`] = `
`;
exports[`serialize > nodes > table > with rowspan 1`] = `
<table>
<table style="minWidth: 25px">
<colgroup>
<col>
</colgroup>
<tbody>
<tr>
<th colspan="1"
Expand Down
5 changes: 3 additions & 2 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"private": true,
"name": "example",
"version": "0.0.0",
"type": "module",
"dependencies": {
"@tiptap/extension-code-block-lowlight": "^2.1.12",
"@tiptap/extension-youtube": "^2.1.12",
Expand All @@ -12,8 +13,8 @@
"vue": "^3.2.47"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.47",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.4.21",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.32.10"
}
Expand Down
Loading

0 comments on commit 92b0adf

Please sign in to comment.