@lerna/pack-directory
Advanced tools
Comparing version 3.16.2 to 3.16.4
@@ -6,2 +6,13 @@ # Change Log | ||
## [3.16.4](https://github.com/lerna/lerna/compare/v3.16.3...v3.16.4) (2019-07-24) | ||
### Bug Fixes | ||
* **pack-directory:** Use correct property when packing subdirectories ([1575396](https://github.com/lerna/lerna/commit/1575396)) | ||
## [3.16.2](https://github.com/lerna/lerna/compare/v3.16.1...v3.16.2) (2019-07-22) | ||
@@ -8,0 +19,0 @@ |
@@ -27,3 +27,3 @@ "use strict"; | ||
opts.log.verbose("pack-directory", path.relative(".", dir)); | ||
opts.log.verbose("pack-directory", path.relative(".", pkg.contents)); | ||
@@ -46,7 +46,7 @@ let chain = Promise.resolve(); | ||
chain = chain.then(() => pkg.refresh()); | ||
chain = chain.then(() => packlist({ path: dir })); | ||
chain = chain.then(() => packlist({ path: pkg.contents })); | ||
chain = chain.then(files => | ||
tar.create( | ||
{ | ||
cwd: dir, | ||
cwd: pkg.contents, | ||
prefix: "package/", | ||
@@ -53,0 +53,0 @@ portable: true, |
{ | ||
"name": "@lerna/pack-directory", | ||
"version": "3.16.2", | ||
"version": "3.16.4", | ||
"description": "Pack a directory into an npm package tarball", | ||
@@ -39,3 +39,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "d4b1a0e48d1ff241fafa268dbe57256e10f2cdc8" | ||
"gitHead": "bb048cb306b5cfcb039aa98f667cf3751cf0ad20" | ||
} |
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
8511