Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Dec 18, 2023
1 parent b093690 commit 25a42a8
Show file tree
Hide file tree
Showing 373 changed files with 2,356 additions and 2,261 deletions.
2 changes: 1 addition & 1 deletion packages/adjacency/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
16 changes: 8 additions & 8 deletions packages/adjacency/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/adjacency",
"version": "2.5.13",
"version": "2.5.14",
"description": "Sparse & bitwise adjacency matrices, lists and selected traversal algorithms for directed & undirected graphs",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -38,16 +38,16 @@
"test": "bun test"
},
"dependencies": {
"@thi.ng/api": "^8.9.12",
"@thi.ng/arrays": "^2.7.8",
"@thi.ng/bitfield": "^2.3.10",
"@thi.ng/dcons": "^3.2.77",
"@thi.ng/errors": "^2.4.6",
"@thi.ng/sparse": "^0.3.82"
"@thi.ng/api": "^8.9.13",
"@thi.ng/arrays": "^2.7.9",
"@thi.ng/bitfield": "^2.3.11",
"@thi.ng/dcons": "^3.2.78",
"@thi.ng/errors": "^2.4.7",
"@thi.ng/sparse": "^0.3.83"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.38.3",
"@thi.ng/vectors": "^7.8.9",
"@thi.ng/vectors": "^7.8.11",
"esbuild": "^0.19.8",
"rimraf": "^5.0.5",
"tools": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/api",
"version": "8.9.12",
"version": "8.9.13",
"description": "Common, generic types, interfaces & mixins",
"type": "module",
"module": "./index.js",
Expand Down
20 changes: 19 additions & 1 deletion packages/args/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand All @@ -9,6 +9,24 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
and/or version bumps of transitive dependencies.

## [2.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/[email protected]) (2023-12-18)

#### 🚀 Features

- add cliApp() runner ([b2248fa](https://github.com/thi-ng/umbrella/commit/b2248fa))
- update lifecycle hooks, add NO_COLOR support, add docs ([4a0ebda](https://github.com/thi-ng/umbrella/commit/4a0ebda))
- add CLIAppConfig pre/post lifecycle hooks
- update UsageOpts.color handling
- add `NO_COLOR` env var support in cliApp()
- add doc strings
- update deps
- update cliApp() to support command context extensions ([61d9fb8](https://github.com/thi-ng/umbrella/commit/61d9fb8))
- update cliApp() error handling ([019e5a1](https://github.com/thi-ng/umbrella/commit/019e5a1))
- update argv handling in cliApp() ([b1ed768](https://github.com/thi-ng/umbrella/commit/b1ed768))
- add NO_COLOR aware formatters to CommandCtx ([0e7ddda](https://github.com/thi-ng/umbrella/commit/0e7ddda))
- update deps
- update cliApp() to use StreamLogger (target: process.stderr) ([b249295](https://github.com/thi-ng/umbrella/commit/b249295))

### [2.2.28](https://github.com/thi-ng/umbrella/tree/@thi.ng/[email protected]) (2023-08-04)

#### ♻️ Refactoring
Expand Down
14 changes: 7 additions & 7 deletions packages/args/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/args",
"version": "2.2.46",
"version": "2.3.0",
"description": "Declarative, functional & typechecked CLI argument/options parser, value coercions etc.",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,12 +35,12 @@
"test": "bun test"
},
"dependencies": {
"@thi.ng/api": "^8.9.12",
"@thi.ng/checks": "^3.4.12",
"@thi.ng/errors": "^2.4.6",
"@thi.ng/logger": "^2.0.2",
"@thi.ng/strings": "^3.7.3",
"@thi.ng/text-format": "^1.4.21"
"@thi.ng/api": "^8.9.13",
"@thi.ng/checks": "^3.4.13",
"@thi.ng/errors": "^2.4.7",
"@thi.ng/logger": "^2.1.0",
"@thi.ng/strings": "^3.7.4",
"@thi.ng/text-format": "^2.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.38.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/arrays/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
14 changes: 7 additions & 7 deletions packages/arrays/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/arrays",
"version": "2.7.8",
"version": "2.7.9",
"description": "Array / Arraylike utilities",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,12 +35,12 @@
"test": "bun test"
},
"dependencies": {
"@thi.ng/api": "^8.9.12",
"@thi.ng/checks": "^3.4.12",
"@thi.ng/compare": "^2.2.8",
"@thi.ng/equiv": "^2.1.37",
"@thi.ng/errors": "^2.4.6",
"@thi.ng/random": "^3.6.18"
"@thi.ng/api": "^8.9.13",
"@thi.ng/checks": "^3.4.13",
"@thi.ng/compare": "^2.2.9",
"@thi.ng/equiv": "^2.1.38",
"@thi.ng/errors": "^2.4.7",
"@thi.ng/random": "^3.6.19"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.38.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/associative/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
22 changes: 11 additions & 11 deletions packages/associative/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/associative",
"version": "6.3.24",
"version": "6.3.25",
"description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations, plain object utilities",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,16 +35,16 @@
"test": "bun test"
},
"dependencies": {
"@thi.ng/api": "^8.9.12",
"@thi.ng/arrays": "^2.7.8",
"@thi.ng/binary": "^3.4.0",
"@thi.ng/checks": "^3.4.12",
"@thi.ng/compare": "^2.2.8",
"@thi.ng/dcons": "^3.2.77",
"@thi.ng/equiv": "^2.1.37",
"@thi.ng/errors": "^2.4.6",
"@thi.ng/random": "^3.6.18",
"@thi.ng/transducers": "^8.8.15",
"@thi.ng/api": "^8.9.13",
"@thi.ng/arrays": "^2.7.9",
"@thi.ng/binary": "^3.4.1",
"@thi.ng/checks": "^3.4.13",
"@thi.ng/compare": "^2.2.9",
"@thi.ng/dcons": "^3.2.78",
"@thi.ng/equiv": "^2.1.38",
"@thi.ng/errors": "^2.4.7",
"@thi.ng/random": "^3.6.19",
"@thi.ng/transducers": "^8.8.16",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/atom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
10 changes: 5 additions & 5 deletions packages/atom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/atom",
"version": "5.2.18",
"version": "5.2.19",
"description": "Mutable wrappers for nested immutable values with optional undo/redo history and transaction support",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,10 +35,10 @@
"test": "bun test"
},
"dependencies": {
"@thi.ng/api": "^8.9.12",
"@thi.ng/equiv": "^2.1.37",
"@thi.ng/errors": "^2.4.6",
"@thi.ng/paths": "^5.1.53",
"@thi.ng/api": "^8.9.13",
"@thi.ng/equiv": "^2.1.38",
"@thi.ng/errors": "^2.4.7",
"@thi.ng/paths": "^5.1.54",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/axidraw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
22 changes: 11 additions & 11 deletions packages/axidraw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/axidraw",
"version": "1.1.41",
"version": "1.1.42",
"description": "Minimal AxiDraw plotter/drawing machine controller for Node.js",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,16 +35,16 @@
"test": "bun test"
},
"dependencies": {
"@thi.ng/api": "^8.9.12",
"@thi.ng/checks": "^3.4.12",
"@thi.ng/compose": "^2.1.51",
"@thi.ng/date": "^2.5.6",
"@thi.ng/errors": "^2.4.6",
"@thi.ng/logger": "^2.0.2",
"@thi.ng/math": "^5.7.7",
"@thi.ng/transducers": "^8.8.15",
"@thi.ng/units": "^0.4.19",
"@thi.ng/vectors": "^7.8.10",
"@thi.ng/api": "^8.9.13",
"@thi.ng/checks": "^3.4.13",
"@thi.ng/compose": "^2.1.52",
"@thi.ng/date": "^2.5.7",
"@thi.ng/errors": "^2.4.7",
"@thi.ng/logger": "^2.1.0",
"@thi.ng/math": "^5.7.8",
"@thi.ng/transducers": "^8.8.16",
"@thi.ng/units": "^0.4.20",
"@thi.ng/vectors": "^7.8.11",
"serialport": "^12.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/base-n/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
2 changes: 1 addition & 1 deletion packages/base-n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/base-n",
"version": "2.5.20",
"version": "2.5.21",
"description": "Arbitrary base-n conversions w/ presets for base8/16/32/36/58/62/64/85, support for bigints and encoding/decoding of byte arrays",
"type": "module",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/bench/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
6 changes: 3 additions & 3 deletions packages/bench/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/bench",
"version": "3.4.14",
"version": "3.4.15",
"description": "Benchmarking & profiling utilities w/ various statistics & formatters (CSV, JSON, Markdown etc.)",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,11 +35,11 @@
"test": "bun test"
},
"dependencies": {
"@thi.ng/api": "^8.9.12"
"@thi.ng/api": "^8.9.13"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.38.3",
"@thi.ng/testament": "^0.4.5",
"@thi.ng/testament": "^0.4.6",
"@types/node": "^20.10.2",
"esbuild": "^0.19.8",
"rimraf": "^5.0.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/bencode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
14 changes: 7 additions & 7 deletions packages/bencode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/bencode",
"version": "2.1.84",
"version": "2.1.85",
"description": "Bencode binary encoder / decoder with optional UTF8 encoding & floating point support",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,12 +35,12 @@
"test": "bun test"
},
"dependencies": {
"@thi.ng/arrays": "^2.7.8",
"@thi.ng/checks": "^3.4.12",
"@thi.ng/defmulti": "^3.0.10",
"@thi.ng/errors": "^2.4.6",
"@thi.ng/transducers": "^8.8.15",
"@thi.ng/transducers-binary": "^2.1.82"
"@thi.ng/arrays": "^2.7.9",
"@thi.ng/checks": "^3.4.13",
"@thi.ng/defmulti": "^3.0.11",
"@thi.ng/errors": "^2.4.7",
"@thi.ng/transducers": "^8.8.16",
"@thi.ng/transducers-binary": "^2.1.83"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.38.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/binary/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
4 changes: 2 additions & 2 deletions packages/binary/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/binary",
"version": "3.4.0",
"version": "3.4.1",
"description": "100+ assorted binary / bitwise operations, conversions, utilities, lookup tables",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,7 +35,7 @@
"test": "bun test"
},
"dependencies": {
"@thi.ng/api": "^8.9.12"
"@thi.ng/api": "^8.9.13"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.38.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/bitfield/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-12-11T10:07:09Z
- **Last updated**: 2023-12-18T13:41:19Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
Loading

0 comments on commit 25a42a8

Please sign in to comment.