mirror of
https://github.com/vale981/riot-katex
synced 2025-03-04 16:51:37 -05:00
10 lines
366 B
Bash
Executable file
10 lines
366 B
Bash
Executable file
#!/bin/sh
|
|
npm install
|
|
|
|
mkdir -p katex-riot-pub
|
|
cp manifest.json riot-katex.js node_modules/katex/dist/katex.min.js node_modules/katex/dist/contrib/auto-render.min.js node_modules/katex/dist/katex.min.css katex-riot-pub
|
|
mkdir -p katex-riot-pub/fonts
|
|
cp -r node_modules/katex/dist/fonts/*.woff2 katex-riot-pub/fonts/
|
|
|
|
cd katex-riot-pub/
|
|
zip -r -FS ../katex-riot.zip *
|