An in-range update of tiny-invariant is breaking the build π¨
greenkeeper opened this issue Β· 3 comments
The dependency tiny-invariant was updated from 1.0.4
to 1.0.5
.
π¨ View failing branch.
This version is covered by your current version range and after updating it in your project the build failed.
tiny-invariant is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.
Status Details
- β ci/circleci: check: Your tests failed on CircleCI (Details).
FAQ and help
There is a collection of frequently asked questions. If those donβt help, you can always ask the humans behind Greenkeeper.
Your Greenkeeper Bot π΄
After pinning to 1.0.4 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.
- The
dependency
tiny-invariant was updated from1.0.5
to1.0.6
.
Your tests are still failing with this version. Compare changes
- The
dependency
tiny-invariant was updated from1.0.6
to1.1.0
.
Your tests are still failing with this version. Compare changes
Release Notes for 1.1.0
- Now
TypeScript
native! (flow
usage still supported β€οΈ) - Leverages the new
TypeScript@3.7
asserts
keyword to correctly narrow types
const user: Person | null = getPerson(); invariant(user, 'expected user to be populated');// the type of
user
is now narrowed to 'Person' rather thanPerson | null