nlf
nlf
Basic auth is dumb, I should incorporate the ability to auth with an app token
there is some desire to allow getconfig to retrieve values from somewhere other than a file on disk or environment variables, however this requires a bit of planning to come...
JSON's lack of comments has always been a frustration, and the alternative of using javascript isn't really a great one. there's no good reason we can't allow for different file...
it is extremely undesirable to run `npm test` and inadvertently use the wrong configuration because of forgetting to set `NODE_ENV=test` we can use some npm provided environment variables to more...
right now getconfig is somewhat arbitrarily limiting environment variable usage to uppercase strings, this isn't necessary so let's not keep that limitation.
currently every operation performed through this module has to maintain its own cache. pacote half implements some form of caching, but now that we don't keep integrity values for locally...
currently we use `write-file-atomic` in a few scattered places, we should implement that here and iterate towards having all of our custom fs related code in one place
The current behavior of these types makes it impossible to correctly type custom assertion methods that are registered in the test context. By exporting the TestContextAssert interface you can now...