Skip to content

Commit

Permalink
chore: log npm config list
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Apr 13, 2022
1 parent 182e118 commit b3b8d4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/release/publish.ts
Expand Up @@ -40,13 +40,13 @@ export async function publish(options: {
} else {
execSync(
"echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc",
{ cwd: pkg.path, env: process.env }
{ cwd: pkg.path }
)
}

execSync("npm whoami", { env: process.env })
execSync("npm config list", { cwd: pkg.path })

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

if (dryRun) {
Expand Down

0 comments on commit b3b8d4b

Please sign in to comment.