mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00

- Add and build grammars - Add to content.ts for interactive use - Add tests - Change bracketExpr parser - Improve comments - Apply prettier
25 lines
555 B
Bash
Executable file
25 lines
555 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
PATH=$(npm bin):"$PATH"
|
|
export PATH
|
|
CLEANSLATE="node_modules/cleanslate/docs/files/cleanslate.css"
|
|
|
|
mkdir -p generated/static
|
|
mkdir -p generated/static/clippy
|
|
scripts/excmds_macros.py
|
|
scripts/newtab.md.sh
|
|
scripts/make_tutorial.sh
|
|
scripts/make_docs.sh &
|
|
nearleyc src/grammars/bracketexpr.ne > src/grammars/bracketexpr.ts
|
|
|
|
(webpack --display errors-only && scripts/git_version.sh)&
|
|
|
|
wait
|
|
|
|
if [ -e "$CLEANSLATE" ] ; then
|
|
cp "$CLEANSLATE" build/static/cleanslate.css
|
|
else
|
|
echo "Couldn't find cleanslate.css. Try running 'npm install'"
|
|
fi
|