John Munson

Results 21 comments of John Munson

@rimiti this is by far the most requested feature (bugfix really), especially when considering the activity on these two issues which have the same root cause. https://github.com/visionmedia/supertest/issues/437 https://github.com/visionmedia/supertest/issues/436 If you...

I can confirm that these both work equally... ```js pool: { afterCreate: (conn, cb) => { conn.run('PRAGMA foreign_keys = ON', cb) } } ``` ```js const knex = Knex(knexConfig.development) knex.client.pool.on('createSuccess',...

I know this is slightly off-topic, but does anyone know if Lerna is compatible with NPM Workspaces? I know that with yarn, you can set `"useWorkspaces": true` in lerna.json and...

Given the following root-level package.json... ``` { "workspaces": [ "packages/*" ] } ``` I can confirm that using "packages"... ``` { "packages": [ "packages/*" ], "version": "0.0.0" } ``` is...

I also am wondering if this is possible. `handleMessageBatch` is almost useless if it doesn't have the ability to handle partial success/failure. Looking at the source code, this is not...

@KidA001 you forgot to chain `.promise()` onto `s3.getObject`. See below for the correction. > For anyone using async await: > > ```js > async function getS3File(filename) { > const params...

@BrandonCopley AWS added [support for promises](https://aws.amazon.com/blogs/developer/support-for-promises-in-the-sdk/) to the sdk back in March 2016, but the API is unconventional so I think that has caused more than it's fair share of...

@BrandonCopley yeah, idk, I'd have to see some code

Hey guys, it appears that @hcavalieri's clever hack is no longer necessary and that Typography.js now at least partially supports media queries inside of the `overrideStyles` property. Checkout where @KyleAMathews...

@TylerBarnes while maybe a little hacky, I love the solution you came up with. I think a wrapper library is a great idea, as it will allow Kyle to revisit...