Ryann Graham
Ryann Graham
Given: ``` $ nvs ls >node/7.7.3/x64 chakracore-nightly/8.0.0-nightly2017031520fa6b1909/x64 ``` I would expect `nvs use chakra` to match `chakracore-nightly/8.0.0-nightly2017031520fa6b1909/x64`. There appears to already be support for segment matching, so `nvs use chakracore-nightly`...
There is a plumbing command in git that does part of this: [`git-commit-tree`](https://git-scm.com/docs/git-commit-tree). You may also be able to get the base commit's tree in fewer commands with [`git-show`](https://git-scm.com/docs/git-show) and...
I haven't looked yet to see if this bit of functionality has already been extracted from npm core or whether it is planned or not, but it sure would be...
There are a decent number of little portable C libraries already available via CCAN. Perhaps someone can import those libraries, or come up with a way of indexing them? It...
This module has been around for a little while now, and people are using it. Bumping the version to 1.0.0 would help it play better with npm's semver range matchers.
Updates CityHash to v1.1.0 from Google. Since v1.1.0 changes some of the hashing algorithms, I've updated all the tests as well. Tested on OS X with clang 4.2 and GCC...
I've got a branch that updates CityHash to v1.1, but all of the tests fail. I _think_ it is because the hash functions have actually changed and the tests are...
I tried an approach almost identical to this on a app a while back and I'm curious how you would handle authentication and other things that would be common to...
actions/cache occasionally gets 500 errors like actions/upload-artifact does, but it just fails instead of retrying like upload-artifact does. This adds retrying on 500 errors to @actions/cache the same way it...