Skip to content

Commit 38e908b

Browse files
committed
feat: update deps, support new languages
1 parent 991a3f0 commit 38e908b

File tree

4 files changed

+1144
-803
lines changed

4 files changed

+1144
-803
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "module",
33
"version": "1.23.1",
44
"private": true,
5-
"packageManager": "pnpm@9.13.2",
5+
"packageManager": "pnpm@9.14.2",
66
"scripts": {
77
"lint": "eslint . --cache",
88
"release": "bumpp",

packages/shiki/src/langs-bundle-full.ts

+30
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,14 @@ export const bundledLanguagesInfo: BundledLanguageInfo[] = [
116116
'name': 'Blade',
117117
'import': (() => import('./langs/blade.mjs')) as DynamicImportLanguageRegistration
118118
},
119+
{
120+
'id': 'bsl',
121+
'name': '1C (Enterprise)',
122+
'aliases': [
123+
'1c'
124+
],
125+
'import': (() => import('./langs/bsl.mjs')) as DynamicImportLanguageRegistration
126+
},
119127
{
120128
'id': 'c',
121129
'name': 'C',
@@ -979,6 +987,14 @@ export const bundledLanguagesInfo: BundledLanguageInfo[] = [
979987
'name': 'SCSS',
980988
'import': (() => import('./langs/scss.mjs')) as DynamicImportLanguageRegistration
981989
},
990+
{
991+
'id': 'sdbl',
992+
'name': '1C (Query)',
993+
'aliases': [
994+
'1c-query'
995+
],
996+
'import': (() => import('./langs/sdbl.mjs')) as DynamicImportLanguageRegistration
997+
},
982998
{
983999
'id': 'shaderlab',
9841000
'name': 'ShaderLab',
@@ -1080,6 +1096,14 @@ export const bundledLanguagesInfo: BundledLanguageInfo[] = [
10801096
'name': 'Systemd Units',
10811097
'import': (() => import('./langs/systemd.mjs')) as DynamicImportLanguageRegistration
10821098
},
1099+
{
1100+
'id': 'talonscript',
1101+
'name': 'TalonScript',
1102+
'aliases': [
1103+
'talon'
1104+
],
1105+
'import': (() => import('./langs/talonscript.mjs')) as DynamicImportLanguageRegistration
1106+
},
10831107
{
10841108
'id': 'tasl',
10851109
'name': 'Tasl',
@@ -1291,6 +1315,8 @@ export const bundledLanguagesBase = Object.fromEntries(bundledLanguagesInfo.map(
12911315
export const bundledLanguagesAlias = Object.fromEntries(bundledLanguagesInfo.flatMap(i => i.aliases?.map(a => [a, i.import]) || []))
12921316

12931317
export type BundledLanguage =
1318+
| '1c'
1319+
| '1c-query'
12941320
| 'abap'
12951321
| 'actionscript-3'
12961322
| 'ada'
@@ -1316,6 +1342,7 @@ export type BundledLanguage =
13161342
| 'bibtex'
13171343
| 'bicep'
13181344
| 'blade'
1345+
| 'bsl'
13191346
| 'c'
13201347
| 'c#'
13211348
| 'c++'
@@ -1520,6 +1547,7 @@ export type BundledLanguage =
15201547
| 'scala'
15211548
| 'scheme'
15221549
| 'scss'
1550+
| 'sdbl'
15231551
| 'sh'
15241552
| 'shader'
15251553
| 'shaderlab'
@@ -1541,6 +1569,8 @@ export type BundledLanguage =
15411569
| 'swift'
15421570
| 'system-verilog'
15431571
| 'systemd'
1572+
| 'talon'
1573+
| 'talonscript'
15441574
| 'tasl'
15451575
| 'tcl'
15461576
| 'templ'

0 commit comments

Comments
 (0)