Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Costin Sin <[email protected]>
  • Loading branch information
radu1122 and costinsin authored Dec 20, 2023
1 parent 7b9eb6a commit fd4fec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packageManagers/npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default class NpmPackageManager implements PackageManager {
await asyncExec(`npm link ${cwd ? `--prefix ${cwd}` : ""} ${packages.join(" ")}`);
}

async publish(cwd: string) {
async publish(cwd?: string) {
await asyncExec(`npm publish ${cwd ?? ""}`);
}

Expand Down

0 comments on commit fd4fec6

Please sign in to comment.