Skip to content
Snippets Groups Projects
Commit 1242cc57 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

logs: log masked token after decryption

parent d8667619
No related branches found
No related tags found
No related merge requests found
const is = require('@sindresorhus/is'); const is = require('@sindresorhus/is');
const crypto = require('crypto'); const crypto = require('crypto');
const { maskToken } = require('../datasource/npm');
module.exports = { module.exports = {
decryptConfig, decryptConfig,
...@@ -19,7 +20,8 @@ function decryptConfig(config, privateKey) { ...@@ -19,7 +20,8 @@ function decryptConfig(config, privateKey) {
.toString(); .toString();
logger.info(`Decrypted ${eKey}`); logger.info(`Decrypted ${eKey}`);
if (eKey === 'npmToken') { if (eKey === 'npmToken') {
logger.info('Migrating npmToken to npmrc'); const token = maskToken(decryptedStr);
logger.info({ token }, 'Migrating npmToken to npmrc');
decryptedConfig.npmrc = `//registry.npmjs.org/:_authToken=${decryptedStr}\n`; decryptedConfig.npmrc = `//registry.npmjs.org/:_authToken=${decryptedStr}\n`;
} else { } else {
decryptedConfig[eKey] = decryptedStr; decryptedConfig[eKey] = decryptedStr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment