Skip to content

Commit

Permalink
style: minor style change in lib/publish.js
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdlg committed Dec 14, 2018
1 parent 9373c90 commit 2786cf2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ module.exports = async ({npmPublish, pkgRoot}, pkg, context) => {
const distTag = getChannel(channel);

logger.log(`Publishing version ${version} to npm registry`);
const result = execa('npm', ['publish', basePath, '--tag', distTag, '--registry', registry], {
cwd,
env,
});
const result = execa('npm', ['publish', basePath, '--tag', distTag, '--registry', registry], {cwd, env});
result.stdout.pipe(
stdout,
{end: false}
Expand Down

0 comments on commit 2786cf2

Please sign in to comment.