Skip to content

Commit 10a2707

Browse files
authored
ci: Log npm version (#11181)
### Description More #11173 follow up.
1 parent d9ac26c commit 10a2707

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/turbo-releaser/src/packager.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ export async function packAndPublish({
2929

3030
if (!skipPublish) {
3131
console.log("Publishing artifacts...");
32-
execSync("npm --version");
32+
const npmVersion = execSync("npm --version").toString().trim();
33+
console.log(`npm version: ${npmVersion}`);
3334
operations.publishArtifacts(artifacts, npmTag);
3435
} else {
3536
console.log("Skipping publish step.");

0 commit comments

Comments
 (0)