We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ac26c commit 10a2707Copy full SHA for 10a2707
packages/turbo-releaser/src/packager.ts
@@ -29,7 +29,8 @@ export async function packAndPublish({
29
30
if (!skipPublish) {
31
console.log("Publishing artifacts...");
32
- execSync("npm --version");
+ const npmVersion = execSync("npm --version").toString().trim();
33
+ console.log(`npm version: ${npmVersion}`);
34
operations.publishArtifacts(artifacts, npmTag);
35
} else {
36
console.log("Skipping publish step.");
0 commit comments