Skip to content

Commit 2724f30

Browse files
committed
πŸ“ add badges.
1 parent 2ed0307 commit 2724f30

21 files changed

+42
-11
lines changed

β€Ž@coven/compare/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Compare logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/compare/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/compare)](https://jsr.io/@coven/compare)
4+
[![JSR Score](https://jsr.io/badges/@coven/compare/score)](https://jsr.io/@coven/compare)
5+
36
πŸͺž Minimalistic deep comparison.
47

58
This library takes 2 values (a `left` and a `right`) and returns an iterator

β€Ž@coven/compare/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@coven/compare",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"exports": "./mod.ts"
55
}

β€Ž@coven/constants/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Constants logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/constants/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/constants)](https://jsr.io/@coven/constants)
4+
[![JSR Score](https://jsr.io/badges/@coven/constants/score)](https://jsr.io/@coven/constants)
5+
36
πŸ“– Shared constants scrolls.
47

58
## Constants

β€Ž@coven/constants/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@coven/constants",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"exports": "./mod.ts"
55
}

β€Ž@coven/expression/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Expression logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/expression/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/expression)](https://jsr.io/@coven/expression)
4+
[![JSR Score](https://jsr.io/badges/@coven/expression/score)](https://jsr.io/@coven/expression)
5+
36
πŸ§™πŸ»β€β™€οΈ Magically build regular expressions.
47

58
## Example

β€Ž@coven/expression/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@coven/expression",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"exports": "./mod.ts"
55
}

β€Ž@coven/iterables/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Iterables logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/iterables/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/iterables)](https://jsr.io/@coven/iterables)
4+
[![JSR Score](https://jsr.io/badges/@coven/iterables/score)](https://jsr.io/@coven/iterables)
5+
36
πŸŒͺ️ Iteration rituals.
47

58
## Example

β€Ž@coven/iterables/deno.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/tags/v1.41.0/cli/schemas/config-file.v1.json",
32
"name": "@coven/iterables",
4-
"version": "0.0.6",
3+
"version": "0.0.7",
54
"exports": {
65
".": "./mod.ts",
76
"./async": "./async/mod.ts"

β€Ž@coven/math/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Math logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/math/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/math)](https://jsr.io/@coven/math)
4+
[![JSR Score](https://jsr.io/badges/@coven/math/score)](https://jsr.io/@coven/math)
5+
36
πŸ’€ Math witchcraft.
47

58
Using this library, adding `0.2` + `0.1` will result in `0.3`, and that might

β€Ž@coven/math/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@coven/math",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"exports": "./mod.ts"
55
}

β€Ž@coven/parsers/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Parsers logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/parsers/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/parsers)](https://jsr.io/@coven/parsers)
4+
[![JSR Score](https://jsr.io/badges/@coven/parsers/score)](https://jsr.io/@coven/parsers)
5+
36
πŸ’« Parsing charms.
47

58
Instead of throwing or returning values like `NaN`, the parsers in this library

β€Ž@coven/parsers/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@coven/parsers",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"exports": "./mod.ts"
55
}

β€Ž@coven/predicates/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Parsers logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/predicates/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/predicates)](https://jsr.io/@coven/predicates)
4+
[![JSR Score](https://jsr.io/badges/@coven/predicates/score)](https://jsr.io/@coven/predicates)
5+
36
πŸ›‘οΈ Predicate wards.
47

58
## Example

β€Ž@coven/predicates/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@coven/predicates",
3-
"version": "0.0.9",
3+
"version": "0.0.10",
44
"exports": "./mod.ts"
55
}

β€Ž@coven/terminal/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Terminal logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/terminal/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/terminal)](https://jsr.io/@coven/terminal)
4+
[![JSR Score](https://jsr.io/badges/@coven/terminal/score)](https://jsr.io/@coven/terminal)
5+
36
πŸ–ŒοΈ Delightfully simple terminal text styles.
47

58
`@coven/terminal` uses [ANSI escape codes][ansi-escape-code] to format CLI text

β€Ž@coven/terminal/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@coven/terminal",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"exports": "./mod.ts"
55
}

β€Ž@coven/types/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Types logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/types/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/types)](https://jsr.io/@coven/types)
4+
[![JSR Score](https://jsr.io/badges/@coven/types/score)](https://jsr.io/@coven/types)
5+
36
πŸ“š Arcane types codex used across [Coven Engineering](https://coven.engineering)
47
libraries.
58

β€Ž@coven/types/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@coven/types",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"exports": "./mod.ts"
55
}

β€Ž@coven/utils/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<img alt="Coven Engineering Utils logo" src="https://raw.githubusercontent.com/covenengineering/libraries/main/@coven/utils/logo.svg" height="108" />
22

3+
[![JSR](https://jsr.io/badges/@coven/utils)](https://jsr.io/@coven/utils)
4+
[![JSR Score](https://jsr.io/badges/@coven/utils/score)](https://jsr.io/@coven/utils)
5+
36
πŸͺ„ Utility spells.
47

58
## Example

β€Ž@coven/utils/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@coven/utils",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"exports": "./mod.ts"
55
}

β€ŽREADME.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<img src="./logo.svg" height="96" />
22

3+
[![Coverage Status](https://coveralls.io/repos/github/covenengineering/libraries/badge.svg?branch=main)](https://coveralls.io/github/covenengineering/libraries?branch=main)
4+
35
Monorepo of all the [Coven Engineering](https://coven.engineering) JSR
46
libraries:
57

0 commit comments

Comments
Β (0)