vscode-texinfo/scripts/prepare.sh

9 lines
274 B
Bash
Raw Normal View History

2020-10-03 18:04:18 +00:00
#!/usr/bin/env sh
2020-10-03 18:27:44 +00:00
mkdir -p ./out
2020-10-03 18:04:18 +00:00
# Convert TextMate grammar from CSON to JSON (VSCode cannot recognize CSON ones).
TMGRAMMAR_CSON=./node_modules/language-texinfo/grammars/texinfo.cson
TMGRAMMAR_JSON=./out/texinfo.tmGrammar.json
cson2json $TMGRAMMAR_CSON > $TMGRAMMAR_JSON