can-connect icon indicating copy to clipboard operation
can-connect copied to clipboard

An in-range update of can-type is breaking the build 🚨

Open greenkeeper[bot] opened this issue 6 years ago β€’ 7 comments

The devDependency can-type was updated from 1.0.1 to 1.0.2.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

can-type is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ❌ continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Release Notes for Improve error message

Improve error message by including the type of the value being set:

class Person extends ObservableObject() {
   static get props() {
      return {
	age: type.check(Number)
      };
   }
}

var farah = new Person(); farah.age = '4'; // -> Uncaught Error: 4 (String) is not of type Number.

Commits

The new version differs by 10 commits.

See the full diff

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 :palm_tree:

greenkeeper[bot] avatar Oct 09 '19 16:10 greenkeeper[bot]

Or the 2nd argument can be an object with a handler and a timeout

justinbmeyer avatar Mar 06 '19 00:03 justinbmeyer

There's an existing signature where the 2nd arg is an object.

matthewp avatar Mar 06 '19 09:03 matthewp