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 ec73eee commit d9ac26cCopy full SHA for d9ac26c
packages/turbo-releaser/src/packager.ts
@@ -1,3 +1,4 @@
1
+import { execSync } from "node:child_process";
2
import type { Platform } from "./types";
3
import operations from "./operations";
4
@@ -28,6 +29,7 @@ export async function packAndPublish({
28
29
30
if (!skipPublish) {
31
console.log("Publishing artifacts...");
32
+ execSync("npm --version");
33
operations.publishArtifacts(artifacts, npmTag);
34
} else {
35
console.log("Skipping publish step.");
0 commit comments