Bug 1608150 [wpt PR 21112] - Add missing space in `./wpt lint` command line docs...
[gecko.git] / third_party / rust / term_size / justfile
blob9ea8fc58ff5617466afecc5a6e20f75e5ba45bde
1 @update-contributors:
2         echo 'Removing old CONTRIBUTORS.md'
3         mv CONTRIBUTORS.md CONTRIBUTORS.md.bak
4         echo 'Downloading a list of new contributors'
5         echo "The following is a list of contributors in alphabetical order:" > CONTRIBUTORS.md
6         echo "" >> CONTRIBUTORS.md
7         echo "" >> CONTRIBUTORS.md
8         githubcontrib --owner kbknapp --repo term_size-rs --sha master --cols 6 --format md --showlogin true --sortBy login >> CONTRIBUTORS.md
9         rm CONTRIBUTORS.md.bak
11 run-test TEST:
12         cargo test --test {{TEST}}
14 debug TEST:
15         cargo test --test {{TEST}} --features debug
17 run-tests:
18         cargo test --features "yaml unstable"
20 @bench: nightly
21         cargo bench && just remove-nightly
23 nightly:
24         rustup override add nightly
26 remove-nightly:
27         rustup override remove
29 @lint: nightly
30         cargo build --features lints && just remove-nightly
32 clean:
33         cargo clean
34         find . -type f -name "*.orig" -exec rm {} \;
35         find . -type f -name "*.bk" -exec rm {} \;
36         find . -type f -name ".*~" -exec rm {} \;