Update stuff

This commit is contained in:
Casey Rodarmor 2016-09-27 22:57:30 -07:00
parent b0d72f319f
commit 3b78451f23
3 changed files with 5 additions and 2 deletions

2
Cargo.lock generated
View File

@ -1,6 +1,6 @@
[root]
name = "j"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"brev 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -7,5 +7,4 @@ description = "a command runner"
homepage = "https://github.com/casey/j"
[dependencies]
brev = "0.1.6"

View File

@ -13,6 +13,10 @@ Adding one argument specifies the recipe:
`j compile`
Multiple recipes can be run in order:
`j lint compile test`
Arguments after `--` are exported as `ARG0, ARG1, ..., ARGN`, which can be used in the justfile. To run recipe `compile` and export `ARG0=bar` and `ARG1=baz`:
`just compile -- bar baz`