mini-shiki 3.12.2 → 3.14.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.
Files changed (2) hide show
  1. package/dist/shiki.js +30 -2
  2. package/package.json +5 -5
package/dist/shiki.js CHANGED
@@ -1446,6 +1446,11 @@ const bundledLanguagesInfo = [
1446
1446
  "name": "HTTP",
1447
1447
  "import": () => import("@shikijs/langs/http")
1448
1448
  },
1449
+ {
1450
+ "id": "hurl",
1451
+ "name": "Hurl",
1452
+ "import": () => import("@shikijs/langs/hurl")
1453
+ },
1449
1454
  {
1450
1455
  "id": "hxml",
1451
1456
  "name": "HXML",
@@ -1475,7 +1480,11 @@ const bundledLanguagesInfo = [
1475
1480
  {
1476
1481
  "id": "javascript",
1477
1482
  "name": "JavaScript",
1478
- "aliases": ["js"],
1483
+ "aliases": [
1484
+ "js",
1485
+ "cjs",
1486
+ "mjs"
1487
+ ],
1479
1488
  "import": () => import("@shikijs/langs/javascript")
1480
1489
  },
1481
1490
  {
@@ -1530,6 +1539,11 @@ const bundledLanguagesInfo = [
1530
1539
  "aliases": ["jl"],
1531
1540
  "import": () => import("@shikijs/langs/julia")
1532
1541
  },
1542
+ {
1543
+ "id": "kdl",
1544
+ "name": "KDL",
1545
+ "import": () => import("@shikijs/langs/kdl")
1546
+ },
1533
1547
  {
1534
1548
  "id": "kotlin",
1535
1549
  "name": "Kotlin",
@@ -1706,6 +1720,11 @@ const bundledLanguagesInfo = [
1706
1720
  "name": "PHP",
1707
1721
  "import": () => import("@shikijs/langs/php")
1708
1722
  },
1723
+ {
1724
+ "id": "pkl",
1725
+ "name": "Pkl",
1726
+ "import": () => import("@shikijs/langs/pkl")
1727
+ },
1709
1728
  {
1710
1729
  "id": "plsql",
1711
1730
  "name": "PL/SQL",
@@ -1833,6 +1852,11 @@ const bundledLanguagesInfo = [
1833
1852
  "name": "RISC-V",
1834
1853
  "import": () => import("@shikijs/langs/riscv")
1835
1854
  },
1855
+ {
1856
+ "id": "rosmsg",
1857
+ "name": "ROS Interface",
1858
+ "import": () => import("@shikijs/langs/rosmsg")
1859
+ },
1836
1860
  {
1837
1861
  "id": "rst",
1838
1862
  "name": "reStructuredText",
@@ -2038,7 +2062,11 @@ const bundledLanguagesInfo = [
2038
2062
  {
2039
2063
  "id": "typescript",
2040
2064
  "name": "TypeScript",
2041
- "aliases": ["ts"],
2065
+ "aliases": [
2066
+ "ts",
2067
+ "cts",
2068
+ "mts"
2069
+ ],
2042
2070
  "import": () => import("@shikijs/langs/typescript")
2043
2071
  },
2044
2072
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mini-shiki",
3
- "version": "3.12.2",
3
+ "version": "3.14.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.12.2",
25
- "@shikijs/langs": "^3.12.2",
26
- "@shikijs/themes": "^3.12.2",
27
- "@shikijs/types": "^3.12.2",
24
+ "@shikijs/engine-oniguruma": "^3.14.0",
25
+ "@shikijs/langs": "^3.14.0",
26
+ "@shikijs/themes": "^3.14.0",
27
+ "@shikijs/types": "^3.14.0",
28
28
  "@shikijs/vscode-textmate": "^10.0.2"
29
29
  }
30
30
  }