Skip to content

Commit

Permalink
Merge pull request #434 from bobbrow/master
Browse files Browse the repository at this point in the history
Change a console.warn to console.log for an informational message
  • Loading branch information
joaomoreno committed Mar 31, 2020
2 parents 2a6d2e6 + fbebf95 commit 3d7afdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package.ts
Expand Up @@ -927,7 +927,7 @@ async function prepublish(cwd: string, manifest: Manifest, useYarn: boolean = fa
return;
}

console.warn(`Executing prepublish script '${useYarn ? 'yarn' : 'npm'} run vscode:prepublish'...`);
console.log(`Executing prepublish script '${useYarn ? 'yarn' : 'npm'} run vscode:prepublish'...`);

const { stdout, stderr } = await exec(`${useYarn ? 'yarn' : 'npm'} run vscode:prepublish`, { cwd, maxBuffer: 5000 * 1024 });
process.stdout.write(stdout);
Expand Down

0 comments on commit 3d7afdd

Please sign in to comment.