Skip to content

Commit 179e1b8

Browse files
authored
switch to commander, enable sub-commands, completion (#56)
cleye has some limitations: - no single character flags right now (opened a PR but stalled for the moment: privatenumber/type-flag#27) - no subcommands - therefore also hard to implement "default" subcommands with the dot-separated subcommand syntax - nice typescript features are hidden by this library anyway, so paying for that complexity without adding value - most importantly, solo developer, small fraction of the usage So this switches to `commander` as the underlying cli library. It's a big change but the basic usage of `trpc-cli` is much the same. --------- Co-authored-by: Misha Kaletsky <[email protected]>
1 parent 3654a71 commit 179e1b8

22 files changed

+2367
-981
lines changed

.github/workflows/autofix.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15+
- run: npm install -g [email protected] # todo: delete if https://github.com/nodejs/corepack/issues/612 is resolved
1516
- run: corepack enable
1617
- run: pnpm install --no-frozen-lockfile
1718
- run: pnpm run lint --fix

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10+
- run: npm install -g [email protected] # todo: delete if https://github.com/nodejs/corepack/issues/612 is resolved
1011
- run: corepack enable
1112
- run: pnpm install
1213
- run: pnpm build
@@ -16,6 +17,7 @@ jobs:
1617
runs-on: ubuntu-latest
1718
steps:
1819
- uses: actions/checkout@v4
20+
- run: npm install -g [email protected] # todo: delete if https://github.com/nodejs/corepack/issues/612 is resolved
1921
- run: corepack enable
2022
- run: pnpm install @trpc/server@next
2123
- run: pnpm test e2e

.github/workflows/deps.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ jobs:
77
run:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: mmkal/runovate@3c4727b5294b19087daea5cf06d09717213a948d
10+
- uses: mmkal/runovate@v1

.github/workflows/pkg.pr.new.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10+
- run: npm install -g [email protected] # todo: delete if https://github.com/nodejs/corepack/issues/612 is resolved
1011
- run: corepack enable
1112
- run: pnpm install
1213
- run: pnpm build

0 commit comments

Comments
 (0)