fix(core): update

This commit is contained in:
2018-12-24 02:13:04 +01:00
parent 0d19c1c68d
commit 524b405773
4 changed files with 31 additions and 4 deletions

View File

@ -28,11 +28,14 @@ export let mirror = async () => {
const githubToken = process.env.NPMCI_GIT_GITHUBTOKEN;
const githubUser = process.env.NPMCI_GIT_GITHUBGROUP || repo.user;
const githubRepo = process.env.NPMCI_GIT_GITHUB || repo.repo;
if(
if (
configObject.projectInfo.npm.packageJson.private === true ||
configObject.npmAccessLevel === 'private'
) {
logger.log('warn', `refusing to mirror due to private property use a private mirror location instead`);
logger.log(
'warn',
`refusing to mirror due to private property use a private mirror location instead`
);
return;
}
if (githubToken) {