@optique/discover 1.2.0-dev.2285 → 1.2.0-dev.2287

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/README.md CHANGED
@@ -145,12 +145,12 @@ await runProgram({
145
145
  Use `--watch` during development to regenerate only when command files are
146
146
  added, removed, or renamed.
147
147
 
148
- By default, Deno and Bun discover `.ts`, `.mts`, `.js`, and `.mjs` files.
149
- Node.js discovers `.js`, `.mjs`, and `.cjs` files, plus `.ts`, `.mts`, and
150
- `.cts` when it reports native TypeScript support or runs with a recognized
151
- TypeScript loader. TypeScript declaration files such as `.d.ts` are ignored.
148
+ By default, Deno and Bun discover *.ts*, *.mts*, *.js*, and *.mjs* files.
149
+ Node.js discovers *.js*, *.mjs*, and *.cjs* files, plus *.ts*, *.mts*, and
150
+ *.cts* when it reports native TypeScript support or runs with a recognized
151
+ TypeScript loader. TypeScript declaration files such as *.d.ts* are ignored.
152
152
  Entry files named `index` map to their containing command path, so
153
- `commands/index.ts` defines the root command and `commands/user/index.ts`
153
+ *commands/index.ts* defines the root command and *commands/user/index.ts*
154
154
  defines `user`. Use `entryFileName` to choose another entry name or disable
155
155
  this rule. `commandsFromModules()` applies the same path rules to module map
156
156
  keys after stripping its `base` option.
package/dist/cli.cjs CHANGED
@@ -15,7 +15,7 @@ const node_process = require_chunk.__toESM(require("node:process"));
15
15
 
16
16
  //#region deno.json
17
17
  var name = "@optique/discover";
18
- var version = "1.2.0-dev.2285+0e208856";
18
+ var version = "1.2.0-dev.2287+86d0fd20";
19
19
  var license = "MIT";
20
20
  var exports$1 = {
21
21
  ".": "./src/index.ts",
package/dist/cli.js CHANGED
@@ -14,7 +14,7 @@ import process from "node:process";
14
14
 
15
15
  //#region deno.json
16
16
  var name = "@optique/discover";
17
- var version = "1.2.0-dev.2285+0e208856";
17
+ var version = "1.2.0-dev.2287+86d0fd20";
18
18
  var license = "MIT";
19
19
  var exports = {
20
20
  ".": "./src/index.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optique/discover",
3
- "version": "1.2.0-dev.2285",
3
+ "version": "1.2.0-dev.2287",
4
4
  "description": "Runtime-aware command discovery for Optique CLI programs",
5
5
  "keywords": [
6
6
  "CLI",
@@ -83,8 +83,8 @@
83
83
  "optique-discover": "./dist/cli.js"
84
84
  },
85
85
  "dependencies": {
86
- "@optique/run": "1.2.0-dev.2285+0e208856",
87
- "@optique/core": "1.2.0-dev.2285+0e208856"
86
+ "@optique/core": "1.2.0-dev.2287+86d0fd20",
87
+ "@optique/run": "1.2.0-dev.2287+86d0fd20"
88
88
  },
89
89
  "devDependencies": {
90
90
  "@types/node": "^24.0.0",