[READ-ONLY] Mirror of https://github.com/bombshell-dev/tab. shell autocompletions for javascript CLIs
4

Configure Feed

Select the types of activity you want to include in your feed.

chore: export types before module (#13)

tsup currently (and correctly) warns that our `types` exports come after
our module exports, so are never read.

If we place them first, they will be resolved for both the import and
require, and the warnings will go away.

Co-authored-by: Paul Valladares <85648028+dreyfus92@users.noreply.github.com>

authored by

James Garbutt
Paul Valladares
and committed by
GitHub
(Feb 25, 2025, 10:49 AM -0600) 62a5a3bc 7ececba5

+6 -6
+6 -6
package.json
··· 38 38 }, 39 39 "exports": { 40 40 ".": { 41 + "types": "./dist/index.d.ts", 41 42 "import": "./dist/index.js", 42 - "require": "./dist/index.cjs", 43 - "types": "./dist/index.d.ts" 43 + "require": "./dist/index.cjs" 44 44 }, 45 45 "./citty": { 46 + "types": "./dist/citty.d.ts", 46 47 "import": "./dist/citty.js", 47 - "require": "./dist/citty.cjs", 48 - "types": "./dist/citty.d.ts" 48 + "require": "./dist/citty.cjs" 49 49 }, 50 50 "./cac": { 51 + "types": "./dist/cac.d.ts", 51 52 "import": "./dist/cac.js", 52 - "require": "./dist/cac.cjs", 53 - "types": "./dist/cac.d.ts" 53 + "require": "./dist/cac.cjs" 54 54 } 55 55 }, 56 56 "packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"