Skip to content

Commit 576d5c4

Browse files
committed
update optique
1 parent a0820a9 commit 576d5c4

File tree

4 files changed

+33
-33
lines changed

4 files changed

+33
-33
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Inspectarr requires your Radarr/Sonarr URL and API key to connect to your instan
6262

6363
`inspectarr <radarr|sonarr> [options]... [query]`
6464

65-
- Use `inspectarr help <command>` to see more detailed usage information: `inspectarr help sonarr`
65+
- Use `inspectarr <command> --help` to see more detailed usage info for a specific command.
6666

6767
Running Inspectarr without a query will display _all_ of your downloaded media:
6868

bun.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "inspectarr",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"type": "module",
55
"description": "A CLI tool for querying and inspecting the media in your Radarr and Sonarr instances",
66
"repository": {
@@ -23,16 +23,16 @@
2323
"prepare": "find .githooks -type f -exec ln -srf {} .git/hooks/ \\; || true"
2424
},
2525
"dependencies": {
26-
"@optique/core": "0.5.0-dev.76",
27-
"@optique/run": "0.5.0-dev.76",
26+
"@optique/core": "^0.5.0-dev.83",
27+
"@optique/run": "^0.5.0-dev.83",
2828
"es-toolkit": "^1.39.10",
2929
"filterql": "^3.0.2",
3030
"ky": "^1.10.0",
3131
"tablemark": "4.0.0",
3232
"ts-explicit-errors": "^4.0.1"
3333
},
3434
"devDependencies": {
35-
"@adamhl8/configs": "^0.15.15",
35+
"@adamhl8/configs": "^0.15.16",
3636
"@biomejs/biome": "^2.2.4",
3737
"@types/bun": "^1.2.22",
3838
"knip": "^5.63.1",

src/cli/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function getServiceInfo(): ServiceInfo {
2727
const runOptions: RunOptions = {
2828
programName: "inspectarr",
2929
brief: message`Inspectarr (v${text(packageJson.version)}) - ${text(packageJson.description)}`,
30-
help: "both",
30+
help: "option",
3131
version: packageJson.version,
3232
showDefault: { prefix: " [default: " },
3333
}

0 commit comments

Comments
 (0)