loro/deno.json

13 lines
455 B
JSON
Raw Normal View History

2022-11-21 04:50:15 +00:00
{
"tasks": {
"build": "cargo build",
"test": "RUST_BACKTRACE=full cargo nextest run --features=test_utils",
"test-all": "deno task test & deno task quick-fuzz",
"test-prop": "RUSTFLAGS='--cfg=proptest' cargo nextest run --features=test_utils",
"check": "cargo clippy --all-features",
2022-11-21 08:02:29 +00:00
"quick-fuzz": "cd crates/loro-core && deno task quick-fuzz",
2022-11-21 04:50:15 +00:00
"fix": "cargo clippy --fix --features=test_utils",
"vet": "cargo vet"
}
}