@twin.org/cli-core 0.0.1-next.13 → 0.0.1-next.15

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.
@@ -377,7 +377,7 @@ class CLIUtils {
377
377
  for (const line of data) {
378
378
  const parts = line.split("=");
379
379
  const currentIndex = outputKeys.indexOf(parts[0]);
380
- if (currentIndex >= 0) {
380
+ if (currentIndex !== -1) {
381
381
  outputKeys.splice(currentIndex, 1);
382
382
  }
383
383
  outputKeys.push(parts[0]);
@@ -356,7 +356,7 @@ class CLIUtils {
356
356
  for (const line of data) {
357
357
  const parts = line.split("=");
358
358
  const currentIndex = outputKeys.indexOf(parts[0]);
359
- if (currentIndex >= 0) {
359
+ if (currentIndex !== -1) {
360
360
  outputKeys.splice(currentIndex, 1);
361
361
  }
362
362
  outputKeys.push(parts[0]);
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/cli-core - Changelog
2
2
 
3
- ## 0.0.1-next.13
3
+ ## 0.0.1-next.15
4
4
 
5
5
  - Initial Release
@@ -210,7 +210,7 @@ The option value.
210
210
 
211
211
  Allow the option to be read from an env var.
212
212
 
213
- • **minValue**: `bigint` = `...`
213
+ • **minValue**: `bigint` = `0n`
214
214
 
215
215
  The minimum value.
216
216
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/cli-core",
3
- "version": "0.0.1-next.13",
3
+ "version": "0.0.1-next.15",
4
4
  "description": "Core classes for building a CLI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,8 +14,8 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/core": "0.0.1-next.13",
18
- "@twin.org/crypto": "0.0.1-next.13",
17
+ "@twin.org/core": "0.0.1-next.15",
18
+ "@twin.org/crypto": "0.0.1-next.15",
19
19
  "@twin.org/nameof": "next",
20
20
  "chalk": "5.3.0",
21
21
  "commander": "12.1.0",