Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pprint version to match Clojars, improve docs #2654

Merged
merged 1 commit into from
Feb 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions lein-pprint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ This is a sample of how a simple plugin would work.

## Usage

Add `[lein-pprint "1.2.0"]` to `:plugins`.
Add `[lein-pprint "1.3.2"]` to `:plugins`.

$ lein pprint
```bash
$ lein pprint
```

```clj
{:compile-path "/home/phil/src/leiningen/lein-pprint/classes",
Expand All @@ -34,8 +36,17 @@ Add `[lein-pprint "1.2.0"]` to `:plugins`.
:description "Pretty-print a representation of the project map."}
```

Use the `--no-pretty` flag to just print rather than pretty-print.

```bash
$ lein pprint :version
"1.0.0"
$ lein pprint --no-pretty -- :version
1.0.0
```

## License

Copyright © 2012-2017 Phil Hagelberg and contributors.
Copyright © 2012-2020 Phil Hagelberg and contributors.

Distributed under the Eclipse Public License, the same as Clojure.
2 changes: 1 addition & 1 deletion lein-pprint/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject lein-pprint "1.3.0"
(defproject lein-pprint "1.3.2"
:description "Pretty-print a representation of the project map."
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"
Expand Down