File tree 4 files changed +1144
-803
lines changed
4 files changed +1144
-803
lines changed Original file line number Diff line number Diff line change 2
2
"type" : " module" ,
3
3
"version" : " 1.23.1" ,
4
4
"private" : true ,
5
- "packageManager" : " pnpm@9.13 .2" ,
5
+ "packageManager" : " pnpm@9.14 .2" ,
6
6
"scripts" : {
7
7
"lint" : " eslint . --cache" ,
8
8
"release" : " bumpp" ,
Original file line number Diff line number Diff line change @@ -116,6 +116,14 @@ export const bundledLanguagesInfo: BundledLanguageInfo[] = [
116
116
'name' : 'Blade' ,
117
117
'import' : ( ( ) => import ( './langs/blade.mjs' ) ) as DynamicImportLanguageRegistration
118
118
} ,
119
+ {
120
+ 'id' : 'bsl' ,
121
+ 'name' : '1C (Enterprise)' ,
122
+ 'aliases' : [
123
+ '1c'
124
+ ] ,
125
+ 'import' : ( ( ) => import ( './langs/bsl.mjs' ) ) as DynamicImportLanguageRegistration
126
+ } ,
119
127
{
120
128
'id' : 'c' ,
121
129
'name' : 'C' ,
@@ -979,6 +987,14 @@ export const bundledLanguagesInfo: BundledLanguageInfo[] = [
979
987
'name' : 'SCSS' ,
980
988
'import' : ( ( ) => import ( './langs/scss.mjs' ) ) as DynamicImportLanguageRegistration
981
989
} ,
990
+ {
991
+ 'id' : 'sdbl' ,
992
+ 'name' : '1C (Query)' ,
993
+ 'aliases' : [
994
+ '1c-query'
995
+ ] ,
996
+ 'import' : ( ( ) => import ( './langs/sdbl.mjs' ) ) as DynamicImportLanguageRegistration
997
+ } ,
982
998
{
983
999
'id' : 'shaderlab' ,
984
1000
'name' : 'ShaderLab' ,
@@ -1080,6 +1096,14 @@ export const bundledLanguagesInfo: BundledLanguageInfo[] = [
1080
1096
'name' : 'Systemd Units' ,
1081
1097
'import' : ( ( ) => import ( './langs/systemd.mjs' ) ) as DynamicImportLanguageRegistration
1082
1098
} ,
1099
+ {
1100
+ 'id' : 'talonscript' ,
1101
+ 'name' : 'TalonScript' ,
1102
+ 'aliases' : [
1103
+ 'talon'
1104
+ ] ,
1105
+ 'import' : ( ( ) => import ( './langs/talonscript.mjs' ) ) as DynamicImportLanguageRegistration
1106
+ } ,
1083
1107
{
1084
1108
'id' : 'tasl' ,
1085
1109
'name' : 'Tasl' ,
@@ -1291,6 +1315,8 @@ export const bundledLanguagesBase = Object.fromEntries(bundledLanguagesInfo.map(
1291
1315
export const bundledLanguagesAlias = Object . fromEntries ( bundledLanguagesInfo . flatMap ( i => i . aliases ?. map ( a => [ a , i . import ] ) || [ ] ) )
1292
1316
1293
1317
export type BundledLanguage =
1318
+ | '1c'
1319
+ | '1c-query'
1294
1320
| 'abap'
1295
1321
| 'actionscript-3'
1296
1322
| 'ada'
@@ -1316,6 +1342,7 @@ export type BundledLanguage =
1316
1342
| 'bibtex'
1317
1343
| 'bicep'
1318
1344
| 'blade'
1345
+ | 'bsl'
1319
1346
| 'c'
1320
1347
| 'c#'
1321
1348
| 'c++'
@@ -1520,6 +1547,7 @@ export type BundledLanguage =
1520
1547
| 'scala'
1521
1548
| 'scheme'
1522
1549
| 'scss'
1550
+ | 'sdbl'
1523
1551
| 'sh'
1524
1552
| 'shader'
1525
1553
| 'shaderlab'
@@ -1541,6 +1569,8 @@ export type BundledLanguage =
1541
1569
| 'swift'
1542
1570
| 'system-verilog'
1543
1571
| 'systemd'
1572
+ | 'talon'
1573
+ | 'talonscript'
1544
1574
| 'tasl'
1545
1575
| 'tcl'
1546
1576
| 'templ'
You can’t perform that action at this time.
0 commit comments