mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
11 lines
273 B
Bash
Executable file
Vendored
11 lines
273 B
Bash
Executable file
Vendored
#!/bin/bash
|
|
set -e
|
|
|
|
cargo check
|
|
cargo check --no-default-features
|
|
cargo check --all-features
|
|
cargo check --features "dev"
|
|
cargo clippy -- -D warnings
|
|
|
|
cd crates/client-wasm && wasm-pack build --target web && cd -
|
|
cd frontend && npm install && npm run check && npm run lint
|