@optique/run 1.0.0-dev.688 → 1.0.0-dev.690

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -40,7 +40,8 @@ Quick example
40
40
 
41
41
  ~~~~ typescript
42
42
  import { run } from "@optique/run";
43
- import { object, option, argument } from "@optique/core/parser";
43
+ import { option, argument } from "@optique/core/primitives";
44
+ import { object } from "@optique/core/constructs";
44
45
  import { string, integer } from "@optique/core/valueparser";
45
46
 
46
47
  const parser = object({
@@ -76,7 +77,8 @@ configuration:
76
77
 
77
78
  ~~~~ typescript
78
79
  import { run } from "@optique/run";
79
- import { object, option, argument } from "@optique/core/parser";
80
+ import { option, argument } from "@optique/core/primitives";
81
+ import { object } from "@optique/core/constructs";
80
82
  import { string, choice } from "@optique/core/valueparser";
81
83
 
82
84
  const parser = object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optique/run",
3
- "version": "1.0.0-dev.688+29c3a506",
3
+ "version": "1.0.0-dev.690+bf6538f6",
4
4
  "description": "Type-safe combinatorial command-line interface parser",
5
5
  "keywords": [
6
6
  "CLI",
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "sideEffects": false,
72
72
  "dependencies": {
73
- "@optique/core": "1.0.0-dev.688+29c3a506"
73
+ "@optique/core": "1.0.0-dev.690+bf6538f6"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@types/node": "^20.19.9",