Skip to content

Commit

Permalink
fix: pass prefix and workspaces to libnpmpack (#4917)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlf committed May 19, 2022
1 parent dc38ab9 commit 357b0af
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion lib/commands/pack.js
Expand Up @@ -44,7 +44,11 @@ class Pack extends BaseCommand {
// noise generated during packing
const tarballs = []
for (const { arg, manifest } of manifests) {
const tarballData = await libpack(arg, this.npm.flatOptions)
const tarballData = await libpack(arg, {
...this.npm.flatOptions,
prefix: this.npm.localPrefix,
workspaces: this.workspacePaths,
})
const pkgContents = await getContents(manifest, tarballData)
tarballs.push(pkgContents)
}
Expand Down
7 changes: 6 additions & 1 deletion lib/commands/publish.js
Expand Up @@ -80,7 +80,12 @@ class Publish extends BaseCommand {
}

// we pass dryRun: true to libnpmpack so it doesn't write the file to disk
const tarballData = await pack(spec, { ...opts, dryRun: true })
const tarballData = await pack(spec, {
...opts,
dryRun: true,
prefix: this.npm.localPrefix,
workspaces: this.workspacePaths,
})
const pkgContents = await getContents(manifest, tarballData)

// The purpose of re-reading the manifest is in case it changed,
Expand Down

0 comments on commit 357b0af

Please sign in to comment.