psirenny/rollup-plugin-graphql-import

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.

Your tests are still failing with this version. Compare changes

Release Notes for 1.0.6

Fixing typescript definition. #43 Thanks @ngryman and @TrySound!

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 than Person | null