Nicolás Fantone
Nicolás Fantone
While having the following scripts on `package.json`: ```json "clean": "rimraf es lib dist", "build:es": "cross-env BABEL_ENV=es babel src/ --out-dir es", "build:cjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib", "build:umd": "rollup -c",...
Taking a look at the published `[email protected]` bundle shows that [`mime-db`](https://www.npmjs.com/package/mime-db) [**takes up almost 62% of `koa` total size**](https://bundlephobia.com/[email protected]).  `mime-db` comes as a transitive dependency from `accepts`. ```sh ❯...
@squaremo I don't know if you are really into this - but _hey_, here it is, nonetheless. This PR would allow library/module writers to consume "official" type definitions for `amqplib`...
> This is a follow up to https://github.com/apollographql/react-apollo/issues/1931 **Summary**: If executing the same query two (or more) consecutive times **that would return the same `data`**, observers listening to events from...
I saw #1678, but it's an old one and didn't get any traction. How would you feel about implementing this, at least, for `curry` and `curryN`? The idea is that...
On `serverless-offline-dynamodb-streams`, the [`_listenForTermination` call](https://github.com/CoorpAcademy/serverless-plugins/blob/master/packages/serverless-offline-dynamodb-streams/src/index.js#L70) sets up handlers for `SIGINT` and `SIGTERM` signals just so it may log out their names - but since it doesn't handle either of them,...
* Bump `path-to-regexp` to `6.2.0`. * Add tests for new features introduced since `[email protected]`. * Fix minor typos in test descriptions and some `.md` files.
As part of the [efforts for releasing `express` v5](https://github.com/expressjs/express/pull/2237#issuecomment-570058548), a [PR was opened to update `path-to-regexp` to `6.2.0`](https://github.com/pillarjs/router/pull/102). Since `path-to-regexp` is currently [targeting `node` > 10 explicitly](https://github.com/pillarjs/path-to-regexp/blob/master/.travis.yml#L5), it'd make sense...
Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of this project.  #### Changes included in this PR - Changes to...
@rjrodger and @mcdonnelldean I've been looking for a way to avoid the need for users to set pins on clients and/or listeners (I believe your plans include [deprecating them](http://senecajs.org/roadmap/#5-0-early-2017) in...