feat: v0.4.0, change js to ts
This commit is contained in:
18
justfile
18
justfile
@@ -10,8 +10,8 @@ run-rust *args:
|
||||
run-go *args:
|
||||
cargo run --no-default-features --features switch-go-lang -- {{args}}
|
||||
|
||||
run-js *args:
|
||||
cargo run --no-default-features --features switch-js-lang -- {{args}}
|
||||
run-ts *args:
|
||||
cargo run --no-default-features --features switch-ts-lang -- {{args}}
|
||||
|
||||
run-dart *args:
|
||||
cargo run --no-default-features --features switch-dart-lang -- {{args}}
|
||||
@@ -22,8 +22,8 @@ build-run-rust:
|
||||
build-run-go:
|
||||
cargo build --release --no-default-features --features switch-go-lang
|
||||
|
||||
build-run-js:
|
||||
cargo build --release --no-default-features --features switch-js-lang
|
||||
build-run-ts:
|
||||
cargo build --release --no-default-features --features switch-ts-lang
|
||||
|
||||
build-run-dart:
|
||||
cargo build --release --no-default-features --features switch-dart-lang
|
||||
@@ -32,9 +32,9 @@ 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-ts:
|
||||
cargo build --release --no-default-features --features switch-ts-lang
|
||||
cp target/release/runrs ~/bin/runts
|
||||
|
||||
install-run-dart:
|
||||
cargo build --release --no-default-features --features switch-dart-lang
|
||||
@@ -43,11 +43,11 @@ install-run-dart:
|
||||
build-all:
|
||||
@just build-run-rust
|
||||
@just build-run-go
|
||||
@just build-run-js
|
||||
@just build-run-ts
|
||||
@just build-run-dart
|
||||
|
||||
install-all:
|
||||
@just install
|
||||
@just install-run-go
|
||||
@just install-run-js
|
||||
@just install-run-ts
|
||||
@just install-run-dart
|
||||
|
||||
Reference in New Issue
Block a user