Manuel Pacheco

Results 10 comments of Manuel Pacheco

@fungilation I know you just received access to the repo by #160, but I do believe this is high on the priority list of users (including me :D)

this is by no means a fix (but can be used for a PR, actually), but you can use Chrome pretty formatter and debugger to put a breakpoint the place...

Since `serverless.js` (in CJS mode) support exporting a `Promise`, I got it working with the following workaround: `package.json` ``` { "type": "module" } ``` `serverless.cjs` ```js module.exports = import('./serverless.esm.js').then(({config}) =>...

Just an extra note in case anyone wonders how to quickly workaround this in the meantime, edit your `settings.json` file with: ``` { "vim.handleKeys": { "": false } } ```

TypeScript won't normally go against you. Try first thinking your ideas in pseudocode, then ES6 and then the types you're handling. There's many things reasons typescript won't get in your...

Sounds reasonable. I have a little free time for this. EDIT: the [contributing page](https://github.com/scoutforpets/jsonapi-mapper/blob/master/CONTRIBUTING.md) is now added ;)

Just experimenting and forgot a simpler way: changing the return line with just `return 'A saved rejection';` works too. PD: just using `return;` works too, but then the promise is...

That's the comment for. So simplifying a little: ``` javascript var Q = require('q'); var deferred = Q.defer(); var promise = deferred.promise; var promise2 = promise.catch(function savior(rejection) { console.log("Im the...

I could do something about it the wednesday or the weekend to feel helpful ;)

Oh what the heck, I peeked at it, seemed easy, and I just did it on #62