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

refactor: use _auth= when migrating npm tokens

parent 2a771240
No related merge requests found
......@@ -19,7 +19,7 @@ function decryptConfig(config, privateKey) {
logger.info(`Decrypted ${eKey}`);
if (eKey === 'npmToken') {
logger.info('Migrating npmToken to npmrc');
decryptedConfig.npmrc = `//registry.npmjs.org/:_authToken=${decryptedStr}\n`;
decryptedConfig.npmrc = `_auth=${decryptedStr}\n`;
} else {
decryptedConfig[eKey] = decryptedStr;
}
......
......@@ -22,7 +22,7 @@ function massageConfig(config) {
if (allowedStrings.includes(key) && typeof val === 'string') {
massagedConfig[key] = [val];
} else if (key === 'npmToken' && val && val.length < 30) {
massagedConfig.npmrc = `//registry.npmjs.org/:_authToken=${val}\n`;
massagedConfig.npmrc = `_auth=${val}\n`;
delete massagedConfig.npmToken;
} else if (isObject(val)) {
massagedConfig[key] = massageConfig(val);
......
......@@ -2,7 +2,7 @@
exports[`config/massage massageConfig massages npmToken 1`] = `
Object {
"npmrc": "//registry.npmjs.org/:_authToken=some-token
"npmrc": "_auth=some-token
",
}
`;
......
......@@ -57,7 +57,7 @@ describe('config/decrypt', () => {
);
expect(res.packageFiles[0].devDependencies.npmToken).not.toBeDefined();
expect(res.packageFiles[0].devDependencies.npmrc).toEqual(
'//registry.npmjs.org/:_authToken=abcdef-ghijklm-nopqf-stuvwxyz\n'
'_auth=abcdef-ghijklm-nopqf-stuvwxyz\n'
);
});
});
......
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