diff --git a/node_modules/libcipm/CHANGELOG.md b/node_modules/libcipm/CHANGELOG.md index 18d18470e0bbd..a1949b8565916 100644 --- a/node_modules/libcipm/CHANGELOG.md +++ b/node_modules/libcipm/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +## [2.0.2](https://github.com/zkat/cipm/compare/v2.0.1...v2.0.2) (2018-08-10) + + +### Bug Fixes + +* **child:** only override dirPacker if opts.dirPacker is defined ([#55](https://github.com/zkat/cipm/issues/55)) ([13ab2f0](https://github.com/zkat/cipm/commit/13ab2f0)) + + + ## [2.0.1](https://github.com/zkat/cipm/compare/v2.0.0...v2.0.1) (2018-07-27) diff --git a/node_modules/libcipm/lib/extract.js b/node_modules/libcipm/lib/extract.js index 1967308112dee..9166ebc058d01 100644 --- a/node_modules/libcipm/lib/extract.js +++ b/node_modules/libcipm/lib/extract.js @@ -22,12 +22,14 @@ module.exports = { child (name, child, childPath, config, opts) { const spec = npa.resolve(name, child.version) + const additionalToPacoteOpts = {} + if (typeof opts.dirPacker !== 'undefined') { + additionalToPacoteOpts.dirPacker = opts.dirPacker + } const childOpts = config.toPacote(Object.assign({ integrity: child.integrity, resolved: child.resolved - }, { - dirPacker: opts.dirPacker - })) + }, additionalToPacoteOpts)) const args = [spec, childPath, childOpts] return BB.fromNode((cb) => { let launcher = extractionWorker diff --git a/node_modules/libcipm/package.json b/node_modules/libcipm/package.json index e5e65788a9cd4..a934f18df5d35 100644 --- a/node_modules/libcipm/package.json +++ b/node_modules/libcipm/package.json @@ -1,27 +1,27 @@ { - "_from": "libcipm@2.0.1", - "_id": "libcipm@2.0.1", + "_from": "libcipm@2.0.2", + "_id": "libcipm@2.0.2", "_inBundle": false, - "_integrity": "sha512-Y1wsAPUwjTj0Upq9pwV07xBlaHwgqtoC3IIDj6ze93zCeJwYSpN0SUyK5g4wCwwXCVu5KyO1Dc/kb+5QEDakJw==", + "_integrity": "sha512-9uZ6/LAflVEijksTRq/RX0e+pGA4mr8tND9Cmk2JMg7j2fFUBrs8PpFX2DOAJR/XoxPzz+5h8bkWmtIYLunKAg==", "_location": "/libcipm", "_phantomChildren": {}, "_requested": { "type": "version", "registry": true, - "raw": "libcipm@2.0.1", + "raw": "libcipm@2.0.2", "name": "libcipm", "escapedName": "libcipm", - "rawSpec": "2.0.1", + "rawSpec": "2.0.2", "saveSpec": null, - "fetchSpec": "2.0.1" + "fetchSpec": "2.0.2" }, "_requiredBy": [ "#USER", "/" ], - "_resolved": "https://registry.npmjs.org/libcipm/-/libcipm-2.0.1.tgz", - "_shasum": "2f4ebf8562e0fc6e46f415373674e4cf3ac4b9ba", - "_spec": "libcipm@2.0.1", + "_resolved": "https://registry.npmjs.org/libcipm/-/libcipm-2.0.2.tgz", + "_shasum": "4f38c2b37acf2ec156936cef1cbf74636568fc7b", + "_spec": "libcipm@2.0.2", "_where": "/Users/zkat/Documents/code/work/npm", "author": { "name": "Kat Marchán", @@ -95,5 +95,5 @@ "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'", "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'" }, - "version": "2.0.1" + "version": "2.0.2" } diff --git a/package-lock.json b/package-lock.json index 1350828f36d8a..936fbc64d99f0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2458,9 +2458,9 @@ } }, "libcipm": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/libcipm/-/libcipm-2.0.1.tgz", - "integrity": "sha512-Y1wsAPUwjTj0Upq9pwV07xBlaHwgqtoC3IIDj6ze93zCeJwYSpN0SUyK5g4wCwwXCVu5KyO1Dc/kb+5QEDakJw==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/libcipm/-/libcipm-2.0.2.tgz", + "integrity": "sha512-9uZ6/LAflVEijksTRq/RX0e+pGA4mr8tND9Cmk2JMg7j2fFUBrs8PpFX2DOAJR/XoxPzz+5h8bkWmtIYLunKAg==", "requires": { "bin-links": "^1.1.2", "bluebird": "^3.5.1", diff --git a/package.json b/package.json index 9035a7b9a8a1a..08fb54754a101 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "is-cidr": "^2.0.6", "json-parse-better-errors": "^1.0.2", "lazy-property": "~1.0.0", - "libcipm": "^2.0.1", + "libcipm": "^2.0.2", "libnpmhook": "^4.0.1", "libnpx": "^10.2.0", "lock-verify": "^2.0.2",