Offload functions to worker threads with shared memory primitives for Node.js.
8
fork

Configure Feed

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

fix: quote test glob so Node expands it, drop --experimental-strip-types

Shell glob ** doesn't match files in the immediate directory in sh,
only subdirectories. Quoting lets Node's test runner handle the glob
which correctly matches test/*.test.ts and test/**/*.test.ts.
Node 24 strips types natively so the flag is unnecessary.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
package.json
··· 27 27 "release": "changeset version && changeset tag && git add -A && git commit -m \"chore: version $(node -p \"require('./package.json').version\")\" && git push --follow-tags", 28 28 "lint": "prettier --check .", 29 29 "lint:fix": "prettier --write .", 30 - "test": "node --experimental-strip-types --test --test-force-exit test/**/*.test.ts" 30 + "test": "node --test --test-force-exit 'test/**/*.test.ts'" 31 31 }, 32 32 "devDependencies": { 33 33 "@changesets/cli": "^2.30.0",