Rebecca Turner
Rebecca Turner
See: 
Let's get this logic centralized. This'd replace [`ensureValidName`](https://github.com/npm/normalize-package-data/blob/master/lib/fixer.js#L316). Things that use `fixNameField` to validate names should probably be updated to use [`validate-npm-package-name`](https://github.com/npm/validate-npm-package-name) directly too. _cough_ [`npm-registry-client`](https://github.com/npm/npm-registry-client/) _cough_
This appears to have been introduced by: https://github.com/BinaryMuse/toml-node/issues/21 To sum up the problem: Given the following TOML: ```toml ["the\ key"] one = "one" two = 2 three = false ```...
You may already be aware, but npm@3 introduces breaking changes to how peerDependencies are handled. Specifically, it no longer installs them for users. INSTEAD, it reports warnings if they're missing...
This is the undo key in a number of text editors (including one of the undo keys in emacs). Unbinding Ctrl-minus does not help, the terminal still doesn't send any...
In and of itself, this is unsurprising: Use new features, it won't work. The place where this is maybe surprising is with the support for mixed-type arrays. Consider the following...
I have some models that only behave properly with some additional negative prompts. I've patched my local copy to allow me to add both positive and negative prompts -- would...