Graeme Yeates
Graeme Yeates
Done, the linting error appears to be an issue with a ci token
Similar use case, however, in our use case and the way we have the app structured our snapping management is configured separately from our editing management. Our snapping manager only...
Sounds promising. Will take a look when I am working on this area of our project again.
@humbao you can test individual items with underscore query ``` js var myQuery = { ... }, streamedItem = { ... } let q = _query.parse({ myQuery }) q(streamedItem); ```...
For sure, will go whatever direction [`babel-library-boilerplate`](https://github.com/babel/babel-library-boilerplate) decides to go https://github.com/babel/babel-library-boilerplate/issues/172 +others
Could work reasonably well if theres a library that can parse coffeescript into a [estree compatible AST](https://github.com/estree/estree) I'd have to dig into it --- Doesn't seem possible https://twitter.com/GraemeYeates/status/607956987389820928
Probably makes sense to do this as a babel transform looking at some other babel transforms
I think this happens if you use a variable instead of a string for a require ``` var some_module = 'x'; require(some_module) ```
@sndrs can you confirm this or are you running into this from a different situation?
By the way the advantage of this is users can define it to use `let` instead of `var` for example