@thi.ng/args 2.3.28 → 2.3.30
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.
- package/CHANGELOG.md +1 -1
- package/README.md +4 -6
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 192 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
@@ -59,14 +59,12 @@ individual values, e.g. `-a 1,2,3` equals `-a 1 -a 2 -a 3`
|
|
|
59
59
|
yarn add @thi.ng/args
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
ESM import:
|
|
63
63
|
|
|
64
|
-
```
|
|
65
|
-
|
|
64
|
+
```ts
|
|
65
|
+
import * as args from "@thi.ng/args";
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
[Skypack documentation](https://docs.skypack.dev/)
|
|
69
|
-
|
|
70
68
|
For Node.js REPL:
|
|
71
69
|
|
|
72
70
|
```js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/args",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.30",
|
|
4
4
|
"description": "Declarative, functional & typechecked CLI argument/options parser, value coercions etc.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.
|
|
40
|
-
"@thi.ng/checks": "^3.
|
|
41
|
-
"@thi.ng/errors": "^2.5.
|
|
42
|
-
"@thi.ng/logger": "^3.0.
|
|
43
|
-
"@thi.ng/strings": "^3.7.
|
|
44
|
-
"@thi.ng/text-format": "^2.2.
|
|
39
|
+
"@thi.ng/api": "^8.10.1",
|
|
40
|
+
"@thi.ng/checks": "^3.6.1",
|
|
41
|
+
"@thi.ng/errors": "^2.5.4",
|
|
42
|
+
"@thi.ng/logger": "^3.0.9",
|
|
43
|
+
"@thi.ng/strings": "^3.7.30",
|
|
44
|
+
"@thi.ng/text-format": "^2.2.2"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@microsoft/api-extractor": "^7.43.0",
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"hex",
|
|
63
63
|
"logger",
|
|
64
64
|
"nodejs",
|
|
65
|
+
"no-browser",
|
|
65
66
|
"parser",
|
|
66
67
|
"tuple",
|
|
67
68
|
"typescript",
|
|
@@ -103,5 +104,5 @@
|
|
|
103
104
|
"thi.ng": {
|
|
104
105
|
"year": 2018
|
|
105
106
|
},
|
|
106
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n"
|
|
107
108
|
}
|