From 91355c197249320b3a127f6a2f7913e0f70b5efe Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Tue, 31 Dec 2024 00:35:01 +0800 Subject: [PATCH] feat: update justfile --- justfile | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 634f884..e4aff43 100644 --- a/justfile +++ b/justfile @@ -16,8 +16,26 @@ build-run-js: build-run-dart: cargo build --release --no-default-features --features switch-dart-lang +install-run-go: + cargo build --release --no-default-features --features switch-go-lang + cp target/release/runrs ~/bin/rungo + +install-run-js: + cargo build --release --no-default-features --features switch-js-lang + cp target/release/runrs ~/bin/runjss + +install-run-dart: + cargo build --release --no-default-features --features switch-dart-lang + cp target/release/runrs ~/bin/rundart + build-all: @just build-run-rust @just build-run-go @just build-run-js - @just build-run-dart \ No newline at end of file + @just build-run-dart + +install-all: + @just install + @just install-run-go + @just install-run-js + @just install-run-dart \ No newline at end of file