Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Nov 15, 2024
1 parent 45fd3ad commit 96dd596
Show file tree
Hide file tree
Showing 5 changed files with 1,065 additions and 615 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"type": "module",
"version": "1.22.2",
"private": true,
"packageManager": "pnpm@9.12.3",
"packageManager": "pnpm@9.13.2",
"scripts": {
"lint": "eslint . --cache",
"release": "bumpp",
Expand Down
6 changes: 6 additions & 0 deletions packages/shiki/src/langs-bundle-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@ export const bundledLanguagesInfo: BundledLanguageInfo[] = [
],
'import': (() => import('./langs/cadence.mjs')) as DynamicImportLanguageRegistration
},
{
'id': 'cairo',
'name': 'Cairo',
'import': (() => import('./langs/cairo.mjs')) as DynamicImportLanguageRegistration
},
{
'id': 'clarity',
'name': 'Clarity',
Expand Down Expand Up @@ -1315,6 +1320,7 @@ export type BundledLanguage =
| 'c#'
| 'c++'
| 'cadence'
| 'cairo'
| 'cdc'
| 'clarity'
| 'clj'
Expand Down
2 changes: 1 addition & 1 deletion packages/shiki/test/bundle.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ it('bundle-full', async () => {
}))

expect(highlighter.getLoadedLanguages().length)
.toMatchInlineSnapshot(`312`)
.toMatchInlineSnapshot(`313`)
})

it('bundle-web', async () => {
Expand Down
Loading

0 comments on commit 96dd596

Please sign in to comment.