Skip to content

Commit

Permalink
Merge pull request #3 from edumudu/fix/publish-path
Browse files Browse the repository at this point in the history
fix: wrong call to `path.join`
  • Loading branch information
edumudu committed Mar 17, 2022
2 parents b2109aa + ee2383a commit 367695f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/commands/publish.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const publish = () => {
name: packageInfo.name,
version: packageInfo.version,
description: packageInfo.description,
tarballPath: path.join(modulesRoot, tarballFilename),
tarballPath: join(modulesRoot, tarballFilename),
};

fs.writeFileSync(packagesInfoPath, JSON.stringify(packagesInfo, null, 2));
Expand Down

0 comments on commit 367695f

Please sign in to comment.