@thi.ng/args 2.8.1 → 2.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/cli.js +1 -1
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-07-13T21:35:34Z
3
+ - **Last updated**: 2025-07-21T08:21:58Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/cli.js CHANGED
@@ -1,3 +1,4 @@
1
+ import { isArray } from "@thi.ng/checks/is-array";
1
2
  import { illegalArgs } from "@thi.ng/errors/illegal-arguments";
2
3
  import { StreamLogger } from "@thi.ng/logger/stream";
3
4
  import { PRESET_ANSI16, PRESET_NONE } from "@thi.ng/text-format/presets";
@@ -10,7 +11,6 @@ import {
10
11
  __padRightAnsi,
11
12
  __wrapWithIndent
12
13
  } from "./utils.js";
13
- import { isArray } from "@thi.ng/checks/is-array";
14
14
  const cliApp = async (config) => {
15
15
  const argv = config.argv || process.argv;
16
16
  const isColor = !process.env.NO_COLOR;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/args",
3
- "version": "2.8.1",
3
+ "version": "2.8.3",
4
4
  "description": "Declarative, functional CLI argument/options parser, value coercions, sub-commands etc.",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,16 +39,16 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.30",
43
- "@thi.ng/checks": "^3.7.10",
44
- "@thi.ng/errors": "^2.5.36",
45
- "@thi.ng/logger": "^3.1.11",
46
- "@thi.ng/strings": "^3.9.16",
47
- "@thi.ng/text-format": "^2.2.35"
42
+ "@thi.ng/api": "^8.11.32",
43
+ "@thi.ng/checks": "^3.7.12",
44
+ "@thi.ng/errors": "^2.5.38",
45
+ "@thi.ng/logger": "^3.1.13",
46
+ "@thi.ng/strings": "^3.9.18",
47
+ "@thi.ng/text-format": "^2.2.37"
48
48
  },
49
49
  "devDependencies": {
50
- "@types/node": "^24.0.12",
51
- "esbuild": "^0.25.6",
50
+ "@types/node": "^24.0.15",
51
+ "esbuild": "^0.25.8",
52
52
  "typedoc": "^0.28.7",
53
53
  "typescript": "^5.8.3"
54
54
  },
@@ -110,5 +110,5 @@
110
110
  "tag": "cli",
111
111
  "year": 2018
112
112
  },
113
- "gitHead": "a81765bd79046980463c56a8bd187f9aaa88dd65\n"
113
+ "gitHead": "11747c482773d3da03c8b7848b25a56251ccd759\n"
114
114
  }