Charles Phillips

Results 43 comments of Charles Phillips

Count query generates the expected SQL, while min/max do not. v3.30.4: *This is an actual example only user id has been anonymized.* #### Count ##### Query ```coffee query = include:...

### Found a Fix! By changing the query to add `{includeIgnoreAttributes: false}`, I now get the correct result: ```coffee query = includeIgnoreAttributes: false include: [ {model: UserModel, as: "users", where:...

Related #363 , method to permanently fail a job

For reference, I've also used [iced.Rendezvous](https://github.com/maxtaco/coffee-script/blob/iced2/iced.md#icedrendezvous) for similar situations. However, it may be overkill for a simple case.

I ran up against a similar issue today: A function containing an await block can no longer return a value. For instance, saving the handle to an i/o request in...

Looking deeper at @vjpr's suggestion to flatten a chain of expressions by returning at each await block, seems like if anything should be default behavior. If we consider the regular...

I started [looking into this](https://github.com/nextorigin/gulp-pug-hyperscript/tree/feature/jade-is-now-pug) and pug/jade-v2 passes the basic tests but [fails on include/extends](https://travis-ci.org/nextorigin/gulp-pug-hyperscript/jobs/144328002#L363). Thanks for your work, it was easy to make a gulp-pug-hyperscript plugin based on virtual-jade...

Interesting. Could what you are proposing here: ``` coffee try await setTimeout defer(), 100 throw new Error 'let me be caught' alert "Hello CoffeeScript!" catch e alert "error: #{e.message}" ```...

This module works for me on Node 6.9.1 . Is this still a valid bug for you all?

I was just looking for exactly this! Thanks @SimenB . :+1: for `npm publish`