@optique/env 1.0.0-dev.1533 → 1.0.0-dev.1547

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/index.cjs CHANGED
@@ -131,6 +131,8 @@ function bindEnv(parser, options) {
131
131
  type: "optional",
132
132
  terms: parser.usage
133
133
  }] : parser.usage,
134
+ leadingNames: parser.leadingNames,
135
+ acceptingAnyToken: parser.acceptingAnyToken,
134
136
  initialState: parser.initialState,
135
137
  parse: (context) => {
136
138
  const annotations = (0, __optique_core_annotations.getAnnotations)(context.state);
package/dist/index.js CHANGED
@@ -108,6 +108,8 @@ function bindEnv(parser, options) {
108
108
  type: "optional",
109
109
  terms: parser.usage
110
110
  }] : parser.usage,
111
+ leadingNames: parser.leadingNames,
112
+ acceptingAnyToken: parser.acceptingAnyToken,
111
113
  initialState: parser.initialState,
112
114
  parse: (context) => {
113
115
  const annotations = getAnnotations(context.state);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optique/env",
3
- "version": "1.0.0-dev.1533+25e020de",
3
+ "version": "1.0.0-dev.1547+bde3f632",
4
4
  "description": "Environment variable support for Optique",
5
5
  "keywords": [
6
6
  "CLI",
@@ -54,7 +54,7 @@
54
54
  },
55
55
  "sideEffects": false,
56
56
  "dependencies": {
57
- "@optique/core": "1.0.0-dev.1533+25e020de"
57
+ "@optique/core": "1.0.0-dev.1547+bde3f632"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/node": "^20.19.9",