katex 0.16.34 → 0.16.36
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/README.md +3 -3
- package/contrib/copy-tex/README.md +2 -2
- package/contrib/mathtex-script-type/README.md +5 -5
- package/contrib/mhchem/README.md +1 -1
- package/dist/README.md +3 -3
- package/dist/contrib/auto-render.mjs +196 -16606
- package/dist/contrib/copy-tex.mjs +70 -72
- package/dist/contrib/mathtex-script-type.mjs +1 -16427
- package/dist/contrib/mhchem.mjs +439 -12845
- package/dist/contrib/render-a11y-string.mjs +679 -17037
- package/dist/katex-swap.css +1 -1
- package/dist/katex-swap.min.css +1 -1
- package/dist/katex.css +1 -1
- package/dist/katex.js +1 -1
- package/dist/katex.min.css +1 -1
- package/dist/katex.min.js +1 -1
- package/dist/katex.mjs +11793 -11727
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "katex",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.36",
|
|
4
4
|
"description": "Fast math typesetting for the web.",
|
|
5
5
|
"main": "dist/katex.js",
|
|
6
6
|
"types": "types/katex.d.ts",
|
|
@@ -67,7 +67,6 @@
|
|
|
67
67
|
"@babel/preset-typescript": "^7.28.5",
|
|
68
68
|
"@babel/register": "^7.28.6",
|
|
69
69
|
"@babel/runtime": "^7.28.6",
|
|
70
|
-
"@rollup/plugin-alias": "^3.1.9",
|
|
71
70
|
"@rollup/plugin-babel": "^5.3.1",
|
|
72
71
|
"@rollup/plugin-commonjs": "^28.0.9",
|
|
73
72
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
@@ -149,6 +148,7 @@
|
|
|
149
148
|
"test:screenshots:update": "dockers/screenshotter/screenshotter.sh",
|
|
150
149
|
"test:perf": "NODE_ENV=test node -e \"require('@babel/register')({extensions:['.js','.ts']}); require('./test/perf-test.ts')\"",
|
|
151
150
|
"test:ts": "tsc --noEmit",
|
|
151
|
+
"test:build": "node test/verify-build.js",
|
|
152
152
|
"clean": "rm -rf dist/ node_modules/",
|
|
153
153
|
"clean-install": "yarn clean && yarn",
|
|
154
154
|
"start": "webpack serve --config webpack.dev.js",
|