Eric Clemmons
Eric Clemmons
I had the same happen for newlines showing up as: `Â` @frantic Would you accept a PR for fixing this?
I think the "hard" part is really compiling down for that target: ```json // .babelrc { "presets": [ ["env", { "targets": { "node": "4.2.0" } } ] ] } ```...
Related, I'm going to be testing out `backpack` with a project that has multiple entry-points, so using `package.json` is out...
I was just about to use this project because of all of the issues I had with Cap2 after Cap3's release, but now I'm not sure :)
This is the line that I'd like to turn into a variable: > https://github.com/philipwalton/easy-sauce/blob/master/lib/easy-sauce.js#L69 All of the files go into a `build` folder (including an `index.html`), so it should be...
This sounds like a bug for sure! Great detective work here : > have the `` component URL encoded, but when the amplify code goes to look them up, it...
We also need to validate both use-cases: 1. Cognito configured with `username`, but using an email address 2. Cognito configured with `email` (and using an email address)
I think my needs are much simpler. I'm using a large scale for showing projects over months (this project works well), but when we switch to the "what's next to...
Oh, it's a little AngularJS app I wrote that pulls out Basecamp todos' timestamps and generates a Gantt chart. That was _before_ I found out about this project :)
Going off of this example: > https://github.com/reactjs/react-docgen#example-1 ``` jsx import React, { Component } from 'react'; type Props = { /** Description of prop "foo". */ primitive: number, /** Description...