Closed lishaduck closed 5 days ago
I gave up writing regression tests, but otherwise I'm happy with this.
Also, if developing on node>=18, you can apply a patch and build with tsdown
, which is much faster (and it has a nice watch mode, which tsc maybe(?) has?):
```diff ts diff --git a/bin/typesync b/bin/typesync index 95dbe55..e28f57c 100755 --- a/bin/typesync +++ b/bin/typesync @@ -1,4 +1,2 @@ #!/usr/bin/env node -const { startCli } = require('../lib/cli') - -startCli() +import('../dist/cli.mjs').then(({ startCli }) => startCli()) ```
Build command: pnpm dlx tsdown --watch src/cli.ts
(npx tsdown --watch src/cli.ts
for npm)
I’m out on vacation, I’ll check on these when I get back. 👍
Thanks, released as 0.13.4!
Haven't tracked down the source of the bug yet.