about summary refs log tree commit diff
path: root/Taskfile.yml
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-07-06 01:52:04 +0200
committerMel <einebeere@gmail.com>2022-07-06 14:05:28 +0200
commit7ab4e6290d7131e4a401d36d8480b3c2fec9ae41 (patch)
tree380351f1dd080d4cfe2e6ecc9c5ce25a7cd20ed5 /Taskfile.yml
parent5d00068f228322a95895e7f92dd48e6cbb206832 (diff)
downloadjinx-7ab4e6290d7131e4a401d36d8480b3c2fec9ae41.tar.zst
jinx-7ab4e6290d7131e4a401d36d8480b3c2fec9ae41.zip
Add lang binary and decompiler to VM
Diffstat (limited to 'Taskfile.yml')
-rw-r--r--Taskfile.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/Taskfile.yml b/Taskfile.yml
index 86f6a8d..56e26f3 100644
--- a/Taskfile.yml
+++ b/Taskfile.yml
@@ -8,6 +8,7 @@ tasks:
     cmds:
       - go build -o build/bot jinx/cmd/bot
       - go build -o build/vm jinx/cmd/vm
+      - go build -o build/lang jinx/cmd/lang
 
   run:
     desc: "Runs Jinx bot binary."
@@ -21,6 +22,12 @@ tasks:
     cmds:
       - build/vm {{.CLI_ARGS}}
 
+  run-lang:
+    desc: "Runs Lang compiler and VM."
+    deps: [build]
+    cmds:
+      - build/lang {{.CLI_ARGS}}
+
   test:
     desc: "Tests all packages."
     cmds: