deps: float patch on npm to fix citgm

This floats https://github.com/npm/npm/pull/16791 onto npm v5.0.0
to fix an edge case that was found in citgm

PR-URL: https://github.com/nodejs/node/pull/13305
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
This commit is contained in:
Myles Borins 2017-05-30 12:22:53 -04:00 committed by James M Snell
parent 399cb25f62
commit a85b48cbd3

View File

@ -300,9 +300,7 @@ function printData (data, name, cb) {
log.disableProgress()
// print directly to stdout to not unnecessarily add blank lines
process.stdout.write(msg)
cb(null, data)
process.stdout.write(msg, () => cb(null, data))
}
function cleanup (data) {
if (Array.isArray(data)) {