Timothy Jones
Timothy Jones
First off, thanks for this absolutely excellent tool! Much appreciated. In nvm v0.39.1 (the latest at the time of writing), when I do `nvm use` for a version I don't...
Hi there, I'm one of the pact maintainers, and we occasionally get people asking questions about the examples you have here, which (while instructive) have one or two bugs in...
The log level is currently hard-coded in `logger.js`. An improvement would be to allow this to be configured without code changes. The approach used in https://github.com/TimothyJones/github-cognito-openid-wrapper/pull/17 is nice, where the...
The GitHub API paginates responses with more than 30 items (see https://developer.github.com/v3/#pagination). This means that users who have more than 30 emails associated with their account might not have a...
PR #19 added an option to log to splunk. This option doesn't currently work from lambda deployments, because: 1) The environment variables are not passed through in `template.yml` 2) I'm...
> When I am not logged in github in another window (session) I get 500 (Looks like something went wrong!) page instead of Authorization / Login page. _Originally posted by...
# I'm submitting a ... - [x] feature request (kinda) In the future, `componentWillMount` [is going to be deprecated](https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html). Looks like this is going to be in the next version...
At the moment, most of the examples use a `publish.js` for publication. This isn't the most developer-friendly pattern, since it means you're essentially copying boilerplate tooling around each time you...
Some of the examples have their own formatting and lint rules (or turn the lint rules off). We should: [ ] Not turn off lint rules in the examples [...
Intensive use of pact often involves rewriting the same config over and over- especially for the broker and consumer/provider names. I'd like to improve this in an idiomatic way by...