loro/deno.json

14 lines
576 B
JSON
Raw Normal View History

2022-11-21 04:50:15 +00:00
{
"tasks": {
"build": "cargo build",
2022-11-23 08:44:18 +00:00
"test": "RUST_BACKTRACE=full cargo nextest run --features=test_utils && deno task test-wasm",
2022-11-21 04:50:15 +00:00
"test-all": "deno task test & deno task quick-fuzz",
"test-prop": "RUSTFLAGS='--cfg=proptest' cargo nextest run --features=test_utils",
2022-11-23 11:34:27 +00:00
"test-wasm": "cd crates/loro-wasm && deno task install && deno task build && deno task test",
2022-11-21 04:50:15 +00:00
"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"
}
}