@optique/run 1.3.0-dev.2379 → 1.3.0-dev.2380
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/dist/run.cjs +0 -2
- package/dist/run.d.cts +0 -8
- package/dist/run.d.ts +0 -8
- package/dist/run.js +0 -2
- package/package.json +4 -4
package/dist/run.cjs
CHANGED
|
@@ -74,7 +74,6 @@ function buildCoreOptions(options, programMetadata) {
|
|
|
74
74
|
const onExit = options.onExit ?? ((exitCode) => node_process.default.exit(exitCode));
|
|
75
75
|
const colors = options.colors ?? node_process.default.stdout.isTTY;
|
|
76
76
|
const maxWidth = options.maxWidth ?? node_process.default.stdout.columns;
|
|
77
|
-
const termWidth = options.termWidth;
|
|
78
77
|
const showDefault = options.showDefault;
|
|
79
78
|
const showChoices = options.showChoices;
|
|
80
79
|
const showUsage = options.showUsage;
|
|
@@ -154,7 +153,6 @@ function buildCoreOptions(options, programMetadata) {
|
|
|
154
153
|
stdout,
|
|
155
154
|
colors,
|
|
156
155
|
maxWidth,
|
|
157
|
-
termWidth,
|
|
158
156
|
showDefault,
|
|
159
157
|
showChoices,
|
|
160
158
|
showUsage,
|
package/dist/run.d.cts
CHANGED
|
@@ -58,14 +58,6 @@ interface RunOptions {
|
|
|
58
58
|
* @default `process.stdout.columns` (auto-detect terminal width)
|
|
59
59
|
*/
|
|
60
60
|
readonly maxWidth?: number;
|
|
61
|
-
/**
|
|
62
|
-
* Width allocated for help terms before descriptions start. Set to
|
|
63
|
-
* `"auto"` to align descriptions after the widest visible term.
|
|
64
|
-
*
|
|
65
|
-
* @default `26`
|
|
66
|
-
* @since 1.3.0
|
|
67
|
-
*/
|
|
68
|
-
readonly termWidth?: number | "auto";
|
|
69
61
|
/**
|
|
70
62
|
* Whether and how to display default values for options and arguments.
|
|
71
63
|
*
|
package/dist/run.d.ts
CHANGED
|
@@ -58,14 +58,6 @@ interface RunOptions {
|
|
|
58
58
|
* @default `process.stdout.columns` (auto-detect terminal width)
|
|
59
59
|
*/
|
|
60
60
|
readonly maxWidth?: number;
|
|
61
|
-
/**
|
|
62
|
-
* Width allocated for help terms before descriptions start. Set to
|
|
63
|
-
* `"auto"` to align descriptions after the widest visible term.
|
|
64
|
-
*
|
|
65
|
-
* @default `26`
|
|
66
|
-
* @since 1.3.0
|
|
67
|
-
*/
|
|
68
|
-
readonly termWidth?: number | "auto";
|
|
69
61
|
/**
|
|
70
62
|
* Whether and how to display default values for options and arguments.
|
|
71
63
|
*
|
package/dist/run.js
CHANGED
|
@@ -73,7 +73,6 @@ function buildCoreOptions(options, programMetadata) {
|
|
|
73
73
|
const onExit = options.onExit ?? ((exitCode) => process.exit(exitCode));
|
|
74
74
|
const colors = options.colors ?? process.stdout.isTTY;
|
|
75
75
|
const maxWidth = options.maxWidth ?? process.stdout.columns;
|
|
76
|
-
const termWidth = options.termWidth;
|
|
77
76
|
const showDefault = options.showDefault;
|
|
78
77
|
const showChoices = options.showChoices;
|
|
79
78
|
const showUsage = options.showUsage;
|
|
@@ -153,7 +152,6 @@ function buildCoreOptions(options, programMetadata) {
|
|
|
153
152
|
stdout,
|
|
154
153
|
colors,
|
|
155
154
|
maxWidth,
|
|
156
|
-
termWidth,
|
|
157
155
|
showDefault,
|
|
158
156
|
showChoices,
|
|
159
157
|
showUsage,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@optique/run",
|
|
3
|
-
"version": "1.3.0-dev.
|
|
3
|
+
"version": "1.3.0-dev.2380",
|
|
4
4
|
"description": "Type-safe combinatorial command-line interface parser",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CLI",
|
|
@@ -76,11 +76,11 @@
|
|
|
76
76
|
},
|
|
77
77
|
"sideEffects": false,
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@optique/core": "1.3.0-dev.
|
|
79
|
+
"@optique/core": "1.3.0-dev.2380+4bce39a7"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@optique/config": "1.3.0-dev.
|
|
83
|
-
"@optique/env": "1.3.0-dev.
|
|
82
|
+
"@optique/config": "1.3.0-dev.2380+4bce39a7",
|
|
83
|
+
"@optique/env": "1.3.0-dev.2380+4bce39a7",
|
|
84
84
|
"@types/node": "^24.0.0",
|
|
85
85
|
"fast-check": "^4.7.0",
|
|
86
86
|
"tsdown": "^0.13.0",
|