TL; DR
$ meteor add check
Longer version
In version Meteor prior to version 1.2, a main package called meteor-platform used to export some characters, including check .
Since v1.2, this is no longer the case, and these characters are no longer available through the platform, but instead use dedicated packages.
Probably one of the packages you use (or your own application code) uses check (possibly in one of its methods) without declaring it as a dependency.
Until the package developers update the dependency, you can overcome the error by adding check as a top-level dependency:
$ meteor add check
If you determine which package is causing this problem, you can report it to GitHub or deploy the package yourself, add the missing dependencies and send a pull request.
Masteram
source share