mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 13:39:12 +00:00
13 lines
554 B
JSON
13 lines
554 B
JSON
{
|
|
"tasks": {
|
|
"build": "cargo build",
|
|
"test": "RUST_BACKTRACE=full cargo nextest run --features=test_utils & deno task test-wasm",
|
|
"test-all": "deno task test & deno task quick-fuzz",
|
|
"test-prop": "RUSTFLAGS='--cfg=proptest' cargo nextest run --features=test_utils",
|
|
"test-wasm": "cd crates/loro-wasm && deno task build && deno task test",
|
|
"check": "cargo clippy --all-features",
|
|
"quick-fuzz": "cd crates/loro-core && deno task quick-fuzz",
|
|
"fix": "cargo clippy --fix --features=test_utils",
|
|
"vet": "cargo vet"
|
|
}
|
|
}
|