Browse Source

Forward registry auth token only if asked

master
Tony Kovanen 9 years ago
parent
commit
f4c55e2864
  1. 4
      lib/index.js

4
lib/index.js

@ -64,7 +64,8 @@ export default class Now extends EventEmitter {
} }
// Read .npmrc // Read .npmrc
let npmrc; let npmrc = {};
if (pkg['forward-npm']) {
try { try {
npmrc = await readFile(resolvePath(path, '.npmrc'), 'utf8'); npmrc = await readFile(resolvePath(path, '.npmrc'), 'utf8');
npmrc = parseIni(npmrc); npmrc = parseIni(npmrc);
@ -80,6 +81,7 @@ export default class Now extends EventEmitter {
// Do nothing // Do nothing
} }
} }
}
const authToken = npmrc['//registry.npmjs.org/:_authToken']; const authToken = npmrc['//registry.npmjs.org/:_authToken'];

Loading…
Cancel
Save