Stephen Morse

Results 15 comments of Stephen Morse
trafficstars

I'm having a difficult time deploying the package referencing a git url (works locally just can't deploy it), would you mind publishing the updated code in a prerelease? ``` npm...

No luck. Pretty soon after it deployed, it logged another `RangeError: Trying to access beyond buffer length` error.

As a temporary solution, something like this works for an afterSoftRemoved hook: ``` YourCollection.after.update(function (userId, document, fieldNames, modifier, options) { if (modifier && modifier.$set && modifier.$set.removed) { // do something...

IMO it is a bug to have `undefined` encoded as `null`. `undefined` should not be defined in the encoding. Just like with JSON: ``` > JSON.parse(JSON.stringify({a: undefined})) {} > JSON.parse(JSON.stringify({a:...