Skip to content

Commit 21b43c9

Browse files
update deps
1 parent fec6d5b commit 21b43c9

File tree

10 files changed

+51
-49
lines changed

10 files changed

+51
-49
lines changed

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
],
5454
"dependencies": {
5555
"@git-diff-view/lowlight": "^0.0.21",
56-
"highlight.js": "^11.9.0",
57-
"lowlight": "^3.1.0",
56+
"highlight.js": "^11.10.0",
57+
"lowlight": "^3.2.0",
5858
"fast-diff": "^1.3.0"
5959
},
6060
"devDependencies": {

packages/file/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
"dependencies": {
5555
"@git-diff-view/core": "^0.0.21",
5656
"diff": "^5.2.0",
57-
"highlight.js": "^11.9.0",
58-
"lowlight": "^3.1.0",
57+
"highlight.js": "^11.10.0",
58+
"lowlight": "^3.2.0",
5959
"fast-diff": "^1.3.0"
6060
},
6161
"devDependencies": {

packages/lowlight/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
],
5454
"dependencies": {
5555
"@types/hast": "^3.0.0",
56-
"highlight.js": "^11.9.0",
57-
"lowlight": "^3.1.0"
56+
"highlight.js": "^11.10.0",
57+
"lowlight": "^3.2.0"
5858
}
5959
}

packages/react/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
"@git-diff-view/core": "^0.0.21",
6767
"@types/hast": "^3.0.0",
6868
"fast-diff": "^1.3.0",
69-
"highlight.js": "^11.9.0",
70-
"lowlight": "^3.1.0",
71-
"reactivity-store": "^0.3.7",
69+
"highlight.js": "^11.10.0",
70+
"lowlight": "^3.2.0",
71+
"reactivity-store": "^0.3.8",
7272
"use-sync-external-store": "^1.2.2"
7373
},
7474
"devDependencies": {

packages/react/src/components/DiffSplitWidgetLineNormal.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ const _DiffSplitWidgetLine = ({
8383
);
8484
};
8585

86+
// TODO! improve performance
8687
export const DiffSplitWidgetLine = ({
8788
index,
8889
diffFile,

packages/react/src/components/DiffSplitWidgetLineWrap.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ const _DiffSplitWidgetLine = ({
7878
);
7979
};
8080

81+
// TODO! improve performance
8182
export const DiffSplitWidgetLine = ({
8283
index,
8384
diffFile,

packages/shiki/src/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ const highlighter: DiffHighlighter = instance as DiffHighlighter;
156156
/**
157157
* @deprecated
158158
* try to use `getDiffViewHighlighter` instead
159-
*
159+
*
160160
* @example
161161
* ```ts
162162
* import { highlighterReady } from '@git-diff-view/shiki'
@@ -181,11 +181,11 @@ export const highlighterReady = new Promise<DiffHighlighter>((r) => {
181181
/**
182182
* get the shiki diffView highlighter
183183
* @returns Promise<DiffHighlighter>
184-
*
184+
*
185185
* @example
186186
* ```ts
187187
* import { getDiffViewHighlighter } from '@git-diff-view/shiki'
188-
*
188+
*
189189
* getDiffViewHighlighter().then((highlighter) => {
190190
* // do something with highlighter
191191
* }

packages/vue/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
"dependencies": {
5252
"@git-diff-view/core": "^0.0.21",
5353
"@types/hast": "^3.0.0",
54-
"highlight.js": "^11.9.0",
55-
"lowlight": "^3.1.0",
54+
"highlight.js": "^11.10.0",
55+
"lowlight": "^3.2.0",
5656
"fast-diff": "^1.3.0"
5757
},
5858
"devDependencies": {

pnpm-lock.yaml

+34-34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/react-example/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"overlayscrollbars": "^2.10.0",
2525
"react": "^18.2.0",
2626
"react-dom": "^18.2.0",
27-
"reactivity-store": "^0.3.7",
27+
"reactivity-store": "^0.3.8",
2828
"vue": "^3.4.38"
2929
},
3030
"devDependencies": {

0 commit comments

Comments
 (0)