@optique/core 1.3.0-dev.2394 → 1.3.0-dev.2398
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/constructs.cjs +1 -4
- package/dist/constructs.js +1 -4
- package/package.json +2 -2
package/dist/constructs.cjs
CHANGED
|
@@ -179,10 +179,7 @@ function collectStaticSourceIds(parser, out, seen) {
|
|
|
179
179
|
if (seen.has(parser)) return;
|
|
180
180
|
seen.add(parser);
|
|
181
181
|
const source = parser.dependencyMetadata?.source;
|
|
182
|
-
if (source != null)
|
|
183
|
-
out.add(source.sourceId);
|
|
184
|
-
return;
|
|
185
|
-
}
|
|
182
|
+
if (source != null) out.add(source.sourceId);
|
|
186
183
|
const pairs = parser[fieldParsersKey];
|
|
187
184
|
if (pairs != null) for (const [, child] of pairs) collectStaticSourceIds(child, out, seen);
|
|
188
185
|
const scope = parser[require_dependency_runtime.staticSourceScopeKey];
|
package/dist/constructs.js
CHANGED
|
@@ -179,10 +179,7 @@ function collectStaticSourceIds(parser, out, seen) {
|
|
|
179
179
|
if (seen.has(parser)) return;
|
|
180
180
|
seen.add(parser);
|
|
181
181
|
const source = parser.dependencyMetadata?.source;
|
|
182
|
-
if (source != null)
|
|
183
|
-
out.add(source.sourceId);
|
|
184
|
-
return;
|
|
185
|
-
}
|
|
182
|
+
if (source != null) out.add(source.sourceId);
|
|
186
183
|
const pairs = parser[fieldParsersKey];
|
|
187
184
|
if (pairs != null) for (const [, child] of pairs) collectStaticSourceIds(child, out, seen);
|
|
188
185
|
const scope = parser[staticSourceScopeKey];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@optique/core",
|
|
3
|
-
"version": "1.3.0-dev.
|
|
3
|
+
"version": "1.3.0-dev.2398",
|
|
4
4
|
"description": "Type-safe combinatorial command-line interface parser",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CLI",
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
},
|
|
222
222
|
"sideEffects": false,
|
|
223
223
|
"devDependencies": {
|
|
224
|
-
"@optique/env": "1.3.0-dev.
|
|
224
|
+
"@optique/env": "1.3.0-dev.2398+ee974c3d",
|
|
225
225
|
"@types/node": "^24.0.0",
|
|
226
226
|
"fast-check": "^4.7.0",
|
|
227
227
|
"tsdown": "^0.13.0",
|