-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from commercialhaskell/updates
Add various functions from Stack project
- Loading branch information
Showing
6 changed files
with
69 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
## rio-prettyprint | ||
|
||
`rio-prettyprint` is a Haskell package that provides a library that combines the logging | ||
capabilities of the [`rio` package](https://hackage.haskell.org/package/rio) with the pretty | ||
printing capabilities of the | ||
`rio-prettyprint` is a Haskell package that provides a library that combines the | ||
logging capabilities of the | ||
[`rio` package](https://hackage.haskell.org/package/rio) with the pretty | ||
printing capabilities of the | ||
[`annotated-wl-pprint` package](https://hackage.haskell.org/package/annotated-wl-pprint). | ||
Documents can be annotated with an optional style from a set of named styles, and the | ||
style associated with each named style can be specified as a list of ANSI Select Graphic | ||
Rendition (SGR) commands. These commands are represented by the constructors of a type | ||
provided by the | ||
|
||
Documents can be annotated with an optional style from a set of named styles, | ||
and the style associated with each named style can be specified as a list of | ||
ANSI Select Graphic Rendition (SGR) commands. These commands are represented by | ||
the constructors of a type provided by the | ||
[`ansi-terminal-types` package](https://hackage.haskell.org/package/ansi-terminal-types) | ||
|
||
The library also provides: | ||
* a type that represents a simple, non-customisable environments that provide pretty logging | ||
functionality; and | ||
|
||
* a type that represents a simple, non-customisable environments that provide | ||
pretty logging functionality; and | ||
* a type that represents pretty exceptions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
name: rio-prettyprint | ||
version: 0.1.6.0 | ||
version: 0.1.7.0 | ||
synopsis: Pretty-printing for RIO | ||
description: Combine RIO's log capabilities with pretty printing | ||
category: Development | ||
author: Michael Snoyman | ||
maintainer: [email protected] | ||
copyright: 2018-2019 FP Complete | ||
copyright: 2018-2023 FP Complete | ||
license: BSD3 | ||
github: commercialhaskell/rio-prettyprint | ||
description: Combine RIO's log capabilities with pretty printing | ||
extra-source-files: | ||
- ChangeLog.md | ||
- README.md | ||
- stack.yaml | ||
|
||
dependencies: | ||
- base >=4.10 && < 5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,18 +5,22 @@ cabal-version: 1.12 | |
-- see: https://github.com/sol/hpack | ||
|
||
name: rio-prettyprint | ||
version: 0.1.6.0 | ||
version: 0.1.7.0 | ||
synopsis: Pretty-printing for RIO | ||
description: Combine RIO's log capabilities with pretty printing | ||
category: Development | ||
homepage: https://github.com/commercialhaskell/rio-prettyprint#readme | ||
bug-reports: https://github.com/commercialhaskell/rio-prettyprint/issues | ||
author: Michael Snoyman | ||
maintainer: [email protected] | ||
copyright: 2018-2019 FP Complete | ||
copyright: 2018-2023 FP Complete | ||
license: BSD3 | ||
license-file: LICENSE | ||
build-type: Simple | ||
extra-source-files: | ||
ChangeLog.md | ||
README.md | ||
stack.yaml | ||
|
||
source-repository head | ||
type: git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters