Skip to content

Commit 36c738e

Browse files
committed
Update dev-dependencies
1 parent 1e9ba91 commit 36c738e

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

.remarkrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const config = {
4646
remarkPresetWooorm,
4747
remarkFrontmatter,
4848
[remarkRetext, naturalLanguage],
49-
remarkValidateLinks,
49+
[remarkValidateLinks, false],
5050
[remarkLintNoDeadUrls, 'https://unifiedjs.com'],
5151
[remarkLintFirstHeadingLevel, 2],
5252
[remarkLintNoHtml, false]

asset/index.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,7 @@ abbr {
489489

490490
.double-ellipsis {
491491
overflow: hidden;
492+
/* stylelint-disable-next-line declaration-property-value-no-unknown */
492493
display: box;
493494
-webkit-line-clamp: 2;
494495
line-clamp: 2;
@@ -782,7 +783,7 @@ a.tag:focus .count {
782783
}
783784

784785
.content li {
785-
word-wrap: break-all;
786+
word-wrap: break-word;
786787
margin-top: calc(0.25 * (1em + 1ex));
787788
margin-bottom: calc(0.25 * (1em + 1ex));
788789
margin-left: calc(1 * (1em + 1ex));

asset/search.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference lib="dom" />
22

3+
/* eslint-disable unicorn/prefer-global-this */
34
/* eslint-env browser */
45

56
/**

doc/learn/create-an-editor.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ them.
2323
It’s made with [React][] and runs in a browser.
2424

2525
For this example we’ll create an app that visualizes sentence length.
26-
Based on a tip by [Gary Provost][gary-propost].
26+
Based on a tip by [Gary Provost][gary-provost].
2727
The visualization is based on
2828
[a tweet by `@gregoryciotti`][gregoryciotti-tweet].
2929

@@ -456,7 +456,7 @@ If you haven’t already, check out the other articles in the
456456

457457
[esbuild]: https://esbuild.github.io
458458

459-
[gary-propost]: https://www.garyprovost.com/
459+
[gary-provost]: https://en.wikipedia.org/wiki/Gary_Provost
460460

461461
[github-parse-english]: https://github.com/wooorm/parse-english
462462

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"@types/d3-scale": "^4.0.0",
1515
"@types/node": "^22.0.0",
1616
"@types/random-useragent": "^0.3.0",
17-
"@types/react": "^18.0.0",
18-
"@types/react-dom": "^18.0.0",
17+
"@types/react": "^19.0.0",
18+
"@types/react-dom": "^19.0.0",
1919
"@types/xast": "^2.0.0",
2020
"@wooorm/starry-night": "^3.0.0",
2121
"bytes": "^3.0.0",
@@ -98,7 +98,7 @@
9898
"spdx-license-list": "^6.0.0",
9999
"strip-comments": "^2.0.0",
100100
"stylelint": "^16.0.0",
101-
"stylelint-config-standard": "^36.0.0",
101+
"stylelint-config-standard": "^37.0.0",
102102
"to-vfile": "^8.0.0",
103103
"type-coverage": "^2.0.0",
104104
"type-fest": "^4.0.0",
@@ -117,7 +117,7 @@
117117
"xast-util-sitemap": "^2.0.0",
118118
"xast-util-to-xml": "^4.0.0",
119119
"xastscript": "^4.0.0",
120-
"xo": "^0.59.0",
120+
"xo": "^0.60.0",
121121
"yaml": "^2.0.0"
122122
},
123123
"homepage": "https://unifiedjs.com",

0 commit comments

Comments
 (0)