difftastic/script/get_edge_deps

15 lines
227 B
Bash

#!/usr/bin/env bash
set -e
TS_DIR=node_modules/tree-sitter-compiler
rm -rf $TS_DIR
git clone http://github.com/maxbrunsfeld/node-tree-sitter-compiler.git $TS_DIR
(
cd $TS_DIR
git submodule update --init
npm install
)