Skip to content

Commit

Permalink
chore: more visible log
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Apr 13, 2022
1 parent d07abfe commit bd10e87
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/release/publish.ts
Expand Up @@ -40,11 +40,14 @@ export async function publish(options: {
}

console.log(
pkg.name,
"\n\n\n\nPublishing package " + pkg.name,
process.env.NPM_TOKEN?.length,
createHash("sha256").update(process.env.NPM_TOKEN!).digest("hex")
createHash("sha256").update(process.env.NPM_TOKEN!).digest("hex"),
"\n\n\n\n"
)

execSync("npm whoami")

execSync(npmPublish, { cwd: pkg.path, env: process.env })
}

Expand Down

0 comments on commit bd10e87

Please sign in to comment.