a comparison of tools within the JavaScript ecosystem

ci: fix tsc workflow, add tsup workflow

+19 -1
+1 -1
.tangled/workflows/build-tsc.yml
··· 15 15 - name: Install dependencies 16 16 command: pnpm install --frozen-lockfile 17 17 - name: Build packages, run publint 18 - command: 18 + command: pnpm run build-tsc
+18
.tangled/workflows/build-tsup.yml
··· 1 + when: 2 + - event: ['push', 'pull_request'] 3 + branch: ['main'] 4 + 5 + engine: 'nixery' 6 + 7 + dependencies: 8 + nixpkgs: 9 + - coreutils 10 + - gnused 11 + - nodejs_24 12 + - pnpm 13 + 14 + steps: 15 + - name: Install dependencies 16 + command: pnpm install --frozen-lockfile 17 + - name: Build packages, run publint 18 + command: pnpm run build-tsup