Skip to content

Commit 464929a

Browse files
authored
chore: bump pnpm (#900)
1 parent 504e1e5 commit 464929a

File tree

4 files changed

+25
-22
lines changed

4 files changed

+25
-22
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
- name: Setup pnpm
2626
uses: pnpm/action-setup@v4
2727
with:
28-
version: 9.5.0
28+
version: 9.6.0
2929

3030
- name: Use Node
3131
uses: actions/setup-node@v4

apps/website/src/components/highlight/highlight.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import {
88
$,
99
} from '@builder.io/qwik';
1010
import { CodeCopy } from '../code-copy/code-copy';
11-
import { getHighlighterCore } from 'shiki';
1211
import { cn } from '@qwik-ui/utils';
1312
import { isDev } from '@builder.io/qwik/build';
1413
import poimandres from 'shiki/themes/poimandres.mjs';
1514
import html from 'shiki/langs/html.mjs';
1615
import css from 'shiki/langs/css.mjs';
1716
import tsx from 'shiki/langs/tsx.mjs';
17+
import { createHighlighterCore } from 'shiki/index.mjs';
1818

1919
export type HighlightProps = PropsOf<'div'> & {
2020
code: string;
@@ -48,7 +48,7 @@ export const Highlight = component$(
4848
modifiedCode = partsOfCode[0];
4949
}
5050

51-
const highlighter = await getHighlighterCore({
51+
const highlighter = await createHighlighterCore({
5252
themes: [poimandres],
5353
langs: [html, css, tsx],
5454
loadWasm: import('shiki/wasm'),

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"test.headless.ci": "nx component-test-ci headless",
3939
"test.utils": "nx test utils"
4040
},
41-
"packageManager": "pnpm@9.5.0",
41+
"packageManager": "pnpm@9.6.0",
4242
"devDependencies": {
4343
"@axe-core/playwright": "^4.9.1",
4444
"@builder.io/qwik": "^1.7.1",
@@ -158,6 +158,6 @@
158158
},
159159
"volta": {
160160
"node": "20.9.0",
161-
"pnpm": "9.5.0"
161+
"pnpm": "9.6.0"
162162
}
163163
}

pnpm-lock.yaml

Lines changed: 20 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)