1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-19 01:10:57 -08:00
emacs/admin/notes/tree-sitter/build-module/batch.sh
Randy Taylor 8f49137c9b
Add dockerfile-ts-mode (Bug#59894)
* admin/notes/tree-sitter/build-module/batch.sh: Add dockerfile support.
* admin/notes/tree-sitter/build-module/build.sh: Support different
namespaces and add dockerfile support.
* etc/NEWS: Mention it.
* lisp/progmodes/dockerfile-ts-mode.el: New major mode with
tree-sitter support.
* lisp/progmodes/eglot.el (eglot-server-programs): Add it.
2022-12-09 16:46:01 -08:00

22 lines
253 B
Bash
Executable file

#!/bin/bash
languages=(
'c'
'cpp'
'css'
'c-sharp'
'dockerfile'
'go'
'html'
'javascript'
'json'
'python'
'rust'
'typescript'
'tsx'
)
for language in "${languages[@]}"
do
./build.sh $language
done