![github] ![crates-io] ![docs-rs]
Folding licenses from multiple dirs with cargo
/Cargo.toml and yarn
/package.json.
fold-license -i path/to/repos1 -i path/to/repos2 -i path/to/repos3
fold-license -i path1/**/*/ -i path2/foo/bar
cargo
/Cargo.toml repos of a Rust project. (Need cargo
CLI installed env.)yarn
/packages.json repos of a Node.js project. (Need yarn
CLI installed env.)sh
cargo install fold-licenses
note: This package include both of bin and lib. In this section, I explain only the bin version. See also lib.rs and docs if you want to use lib version.
fold-license --help
:
```sh USAGE: fold-license [OPTIONS]
OPTIONS:
-c, --conf cargo
/Cargo.toml, enabled
-f, --format yarn
/packages.json, enabled
```
fold-license -i . -i path/to/somewhere -i 'target/**/pattern/*' -o target/output.toml -s -p --cargo --yarn
fold-license -c example/example-conf.toml
if you want to use -c
and prepared configuration file:```toml
fold-license -c example/example-conf.toml
format = "toml" in = [".", "path/to/somewhere", "target/*/pattern/"] out = "target/output.toml" silent = true pretty = true cargo = true yarn = true ```