Skip to content

Commit 54c1250

Browse files
committed
remove temp logging from release-staging
1 parent 34a68e4 commit 54c1250

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

npm-app/release-staging/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,10 @@ async function getLatestVersion() {
9696
`https://registry.npmjs.org/${packageName}/latest`,
9797
)
9898

99-
console.log('asdf', { code: res.statusCode })
10099
if (res.statusCode !== 200) return null
101100

102101
const body = await streamToString(res)
103-
console.log('asdf body', body)
104102
const packageData = JSON.parse(body)
105-
console.log('asdf packageData', JSON.stringify(packageData, null, 2))
106103

107104
return packageData.version || null
108105
} catch (error) {

0 commit comments

Comments
 (0)