contra

Results 180 comments of contra

Any reason this hasn't been merged?

Also getting this on 5.2.0

Also having this issue - not sure how to temp fix

Tinkered and replacing getScreenPosition with this ``` javascript function getScreenPosition( node ) { var rect = node.getBoundingClientRect(); return { x: rect.left, y: rect.bottom-rect.height }; } ``` seemed to fix the...

@Bidek56 No - does it really matter if this library is using ES5 or ES6? We have more compatibility with older versions of node + no build process right now....

@Bidek56 `import reqdir from 'require-dir';` will work just fine, use babel-register in your node project for ES6 imports. A library does not need to "be ES6" to work with imports....

@brandonros See above comment - it is labeled experimental, I will update the package when it is finalized and marked as stable.

I'll reopen this, since it's been 3 years and this is no longer an experimental node feature. Likely to support modules requireDir will need to become an async function, so...

@Yimura I don't think it should be closed since it should still be an issue - this module is failing if `parent` is not defined, which seems to be the...