Justin Chase

Results 185 comments of Justin Chase

I ended up finding a resolution which is to use `vogels.types.stringSet()` for arrays. I think if you look into the definition of `stringSet()` it is just using array but has...

The build errors here look like this PR uncovered bugs in the unit tests.

I don't know for sure but have you tried something like this:? ``` var data = { items: { $add: ['foo'], $del: ['bar'] } } Example.update(items, callback) ```

What if you just did it in two separate calls? ``` Example.update({ tags: { $add: ['foo'] } }, (err) => { if (err) return callback(err) Example.update({ tags: { $del: ['bar']...

This and TLS are probably needed for 1.0

Well that was May of 2020... so thats nuts. I've been looking for that link for a year. Thanks, I'll check it out and see if it will work for...

This appears to be true for docker based actions as well.

Or is there a way to specify that only a particular step should be run, such as by adding `{ only: true }` for a step? And then debugging at...

Or another option would be, if adding a flag is too complicated, to make a new reporter, call it `even-more-min`, which does the exact same thing as min except for...