Skip to content

v4.17.1

Choose a tag to compare

@sanjay1909 sanjay1909 released this 02 May 22:15
· 111 commits to main since this release

Fixed

  • test/lib/detach/examples-integration.test.ts builds dist/ on demand. The detach examples-integration test runs each example via npx tsx, which resolves import { ... } from 'footprintjs' to the package's dist/index.js. CI runs npm test BEFORE npm run build, so dist/ didn't exist yet during the test — every detach example exited with Cannot find module .../dist/index.js and the v4.17.0 publish workflow failed before npm publish could run. A beforeAll hook now builds dist/ if missing (no-op locally where dist is already current). v4.17.1 is functionally identical to v4.17.0 — just makes the publish go through.