mini-shiki 3.22.0 → 3.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/shiki.js +22 -0
- package/package.json +5 -5
package/dist/shiki.js
CHANGED
|
@@ -1134,6 +1134,12 @@ const bundledLanguagesInfo = [
|
|
|
1134
1134
|
"name": "Bicep",
|
|
1135
1135
|
"import": () => import("@shikijs/langs/bicep")
|
|
1136
1136
|
},
|
|
1137
|
+
{
|
|
1138
|
+
"id": "bird2",
|
|
1139
|
+
"name": "BIRD2 Configuration",
|
|
1140
|
+
"aliases": ["bird"],
|
|
1141
|
+
"import": () => import("@shikijs/langs/bird2")
|
|
1142
|
+
},
|
|
1137
1143
|
{
|
|
1138
1144
|
"id": "blade",
|
|
1139
1145
|
"name": "Blade",
|
|
@@ -1605,6 +1611,11 @@ const bundledLanguagesInfo = [
|
|
|
1605
1611
|
"aliases": ["jl"],
|
|
1606
1612
|
"import": () => import("@shikijs/langs/julia")
|
|
1607
1613
|
},
|
|
1614
|
+
{
|
|
1615
|
+
"id": "just",
|
|
1616
|
+
"name": "Just",
|
|
1617
|
+
"import": () => import("@shikijs/langs/just")
|
|
1618
|
+
},
|
|
1608
1619
|
{
|
|
1609
1620
|
"id": "kdl",
|
|
1610
1621
|
"name": "KDL",
|
|
@@ -1740,6 +1751,11 @@ const bundledLanguagesInfo = [
|
|
|
1740
1751
|
"aliases": ["nf"],
|
|
1741
1752
|
"import": () => import("@shikijs/langs/nextflow")
|
|
1742
1753
|
},
|
|
1754
|
+
{
|
|
1755
|
+
"id": "nextflow-groovy",
|
|
1756
|
+
"name": "nextflow-groovy",
|
|
1757
|
+
"import": () => import("@shikijs/langs/nextflow-groovy")
|
|
1758
|
+
},
|
|
1743
1759
|
{
|
|
1744
1760
|
"id": "nginx",
|
|
1745
1761
|
"name": "Nginx",
|
|
@@ -2466,6 +2482,12 @@ const bundledThemesInfo = [
|
|
|
2466
2482
|
"type": "dark",
|
|
2467
2483
|
"import": () => import("@shikijs/themes/horizon")
|
|
2468
2484
|
},
|
|
2485
|
+
{
|
|
2486
|
+
"id": "horizon-bright",
|
|
2487
|
+
"displayName": "Horizon Bright",
|
|
2488
|
+
"type": "dark",
|
|
2489
|
+
"import": () => import("@shikijs/themes/horizon-bright")
|
|
2490
|
+
},
|
|
2469
2491
|
{
|
|
2470
2492
|
"id": "houston",
|
|
2471
2493
|
"displayName": "Houston",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mini-shiki",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.23.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": "git+https://github.com/un-ts/mini-shiki.git",
|
|
6
6
|
"homepage": "https://github.com/un-ts/mini-shiki#readme",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"static"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@shikijs/engine-oniguruma": "^3.
|
|
25
|
-
"@shikijs/langs": "^3.
|
|
26
|
-
"@shikijs/themes": "^3.
|
|
27
|
-
"@shikijs/types": "^3.
|
|
24
|
+
"@shikijs/engine-oniguruma": "^3.23.0",
|
|
25
|
+
"@shikijs/langs": "^3.23.0",
|
|
26
|
+
"@shikijs/themes": "^3.23.0",
|
|
27
|
+
"@shikijs/types": "^3.23.0",
|
|
28
28
|
"@shikijs/vscode-textmate": "^10.0.2"
|
|
29
29
|
}
|
|
30
30
|
}
|