change architecture

This commit is contained in:
JOLIMAITRE Matthieu 2024-03-08 13:27:18 +01:00
parent cf8c7d280e
commit 0669ada3cc
26 changed files with 163 additions and 282 deletions

16
build.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/sh
set -e
cd "$(dirname "$(realpath "$0")")"
programs="gen_module install"
rm -fr bin
mkdir -p bin
for program in $programs
do
deno compile --output="bin/mbztr_$program" --allow-all "src/$program.ts"
done