1.9 KiB
1.9 KiB
id, name, status, depends_on, scope, risk, impact, level
| id | name | status | depends_on | scope | risk | impact | level | ||
|---|---|---|---|---|---|---|---|---|---|
| final-review-and-ci-validation | Final review: full test suite, build, and CI readiness | pending |
|
moderate | low | project | review |
Description
Final review before considering the package ready for use (excluding Iroh, which is deferred). Verify:
- Full test suite passes (core + operators + Redis + WS client + WS server + Worker + integration)
- Build produces correct dual ESM/CJS output with declarations for all entry points
- Type-check passes for all source files
- Package.json exports map covers all adapters
- Each adapter has its own sub-path export configured correctly
- Barrel re-export in
src/index.tsincludes everything - No test regressions
- No extraneous files in npm package (check
npm packoutput)
Acceptance Criteria
npm run buildpasses cleanlynpm run lintpasses (tsc --noEmit)npm testpasses with full test suitenpm run test:coveragereports reasonable coverage (core > 80%)- All sub-path exports resolve correctly
- Package can be consumed as
import { createPubSub } from '@alkdev/pubsub' - Package can be consumed as
import { createRedisEventTarget } from '@alkdev/pubsub/event-target-redis' - Package can be consumed as
import { createWebSocketClientEventTarget } from '@alkdev/pubsub/event-target-websocket-client' - Package can be consumed as
import { createWebSocketServerEventTarget } from '@alkdev/pubsub/event-target-websocket-server' - Package can be consumed as
import { createWorkerHostEventTarget } from '@alkdev/pubsub/event-target-worker' - No runtime dependencies (Repeater is inlined)
- Peer deps are optional and correct
References
- docs/architecture/build-distribution.md
- All architecture docs
Notes
To be filled by implementation agent
Summary
To be filled on completion