npm-lifecycle
Advanced tools
Comparing version 3.1.2 to 3.1.3
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="3.1.3"></a> | ||
## [3.1.3](https://github.com/npm/lifecycle/compare/v3.1.2...v3.1.3) (2019-08-12) | ||
### Bug Fixes | ||
* fail properly if uid-number raises an error ([e0e1b62](https://github.com/npm/lifecycle/commit/e0e1b62)) | ||
<a name="3.1.2"></a> | ||
@@ -7,0 +17,0 @@ ## [3.1.2](https://github.com/npm/lifecycle/compare/v3.1.1...v3.1.2) (2019-07-22) |
@@ -268,2 +268,8 @@ 'use strict' | ||
uidNumber(user, group, function (er, uid, gid) { | ||
if (er) { | ||
er.code = 'EUIDLOOKUP' | ||
opts.log.resume() | ||
process.nextTick(dequeue) | ||
return cb(er) | ||
} | ||
runCmd_(cmd, pkg, env, wd, opts, stage, unsafe, uid, gid, cb) | ||
@@ -270,0 +276,0 @@ }) |
{ | ||
"name": "npm-lifecycle", | ||
"version": "3.1.2", | ||
"version": "3.1.3", | ||
"description": "JavaScript package lifecycle hook runner", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35673
479