Update justfile

This commit is contained in:
Austen Adler 2023-03-01 07:28:33 -05:00
parent 762e694f01
commit 6853b2c7bc

View File

@ -1,20 +1,20 @@
build: fmt build-rust build-wasm build-js build: fmt rust-build build-wasm js-build
all: clean fmt test-rust build # build-docs all: clean fmt rust-test build # build-docs
rsync -ha ./web-frontend/build/ build/ rsync -ha ./web-frontend/build/ build/
du -shc build/* | sort -h du -shc build/* | sort -h
test-rust: rust-test:
cargo test --all cargo test --all
cargo fmt --all --check cargo fmt --all --check
build-rust: rust-build:
cargo build --all cargo build --all
build-wasm: build-wasm:
wasm-pack build --target web this_algorithm-wasm wasm-pack build --target web this_algorithm-wasm
build-js: build-wasm js-build: build-wasm
yarn --cwd ./web-frontend/ build yarn --cwd ./web-frontend/ build
clean: clean:
@ -24,10 +24,10 @@ build-docs:
earthly +docs earthly +docs
# TODO: Clippy # TODO: Clippy
watch-rust: rust-watch:
cargo watch -x fmt -x check -x build cargo watch -x fmt -x check -x build
watch-js: js-dev:
yarn --cwd ./web-frontend/ dev yarn --cwd ./web-frontend/ dev
fmt: fmt: