Alf Eaton

Results 67 comments of Alf Eaton

> Are you pruning your merged branches? I think the fact that our getRecentBranches function here doesn't confirm a branch exists locally mean we can end up often showing fewer...

`find node_modules -type l | grep -v .bin` and `find ~/.config/yarn/link -type l` are helpful for finding linked and linkable modules, respectively.

This might help in some situations (as long as you're sure there aren't any real filenames ending with `/`): ``` decompress(buffer, dir, { map: (file) => { if (file.type ===...

This is because [the plugin is disabled if the output is not a TTY](https://github.com/clessg/progress-bar-webpack-plugin/blob/master/index.js#L11), like WebStorm's Run window.

Here's [the upstream discussion in node-progress](https://github.com/visionmedia/node-progress/issues/110). Another library with the same issue (`supports-color`) [fixed this by adding a `FORCE_COLOR` option](https://github.com/chalk/supports-color/issues/13).

The same issue is seen when running an application with `forever`, which redirects the output to a non-TTY stream. This workaround helps in that case: ```js var stream = options.stream;...

Feel free to close this if newlines in RIS fields aren't valid - it feels like that would be reasonable, as otherwise the contents of the text could accidentally start...

> Did this file get generated from some other application? I'm testing with BibTeX files generated by https://lens.org but there are some other issues with abstracts (e.g. XML markup) in...

> If you're able to find documentation negating that, I'd be happy to look into adjusting the parser. I found this in [the RIS specification](https://web.archive.org/web/20100726184547/http://www.refman.com/support/risformat_fields_02.asp): > How to handle long...

Basiclaly I'm just trying to make the interface as simple as possible (and in my case this is for a Polymer element, so doesn't need to support node). The aim...