A fast, local-first "redirection engine" for !bang users with a few extra features ^-^
5
fork

Configure Feed

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

chore: don't log progress in not interactive terminals

+5 -5
+1 -1
.github/workflows/test-bangs.yaml
··· 13 13 - name: Install bun 14 14 uses: oven-sh/setup-bun@v1 15 15 16 - - name: 🥔 hash 16 + - name: 👀 Check bangs 17 17 run: bun run check 18 18 19 19 - name: Commit changes
+4 -4
src/bangs/test-bangs.ts
··· 70 70 try { 71 71 process.stdout.clearLine(0); 72 72 process.stdout.cursorTo(0); 73 + process.stdout.write( 74 + `${spinChars[spinIdx]} Completed ${completedBangs}/${bangEntries.length} bangs (${bangsPerSecond}/s)`, 75 + ); 76 + spinIdx = (spinIdx + 1) % spinChars.length; 73 77 } catch (err) { 74 78 process.stdout.write("\r"); 75 79 } 76 - process.stdout.write( 77 - `${spinChars[spinIdx]} Completed ${completedBangs}/${bangEntries.length} bangs (${bangsPerSecond}/s)`, 78 - ); 79 - spinIdx = (spinIdx + 1) % spinChars.length; 80 80 }, 500); 81 81 82 82 const workers = chunks.map((chunk) => {