Rewrite lib with typescript

This commit is contained in:
2020-03-21 17:59:41 +03:00
parent 474dae9748
commit 4bdd38ec15
28 changed files with 2374 additions and 7718 deletions

16
tools/node Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
set -eu
source .env
docker run \
--rm \
--interactive \
--tty \
--init \
--user "$(id -u):$(id -g)" \
--volume "$PWD:/srv/app" \
--workdir /srv/app \
${NODE_IMAGE} \
node "$@"