chore(package): update xo to version 0.24.0

This commit is contained in:
greenkeeper[bot]
2019-01-30 17:27:04 -05:00
committed by Pierre Vanduynslager
parent 1b7d8b2d21
commit 448a0ff977
12 changed files with 21 additions and 6 deletions
+3
View File
@@ -52,6 +52,7 @@ async function run(context, plugins) {
);
return false;
}
logger[options.dryRun ? 'warn' : 'success'](
`Run automated release from branch ${ciBranch}${options.dryRun ? ' in dry-run mode' : ''}`
);
@@ -70,6 +71,7 @@ async function run(context, plugins) {
);
return false;
}
throw error;
}
} catch (error) {
@@ -92,6 +94,7 @@ async function run(context, plugins) {
logger.log('There are no relevant changes, so no new version is released.');
return false;
}
context.nextRelease = nextRelease;
nextRelease.version = getNextVersion(context);
nextRelease.gitTag = template(options.tagFormat)({version: nextRelease.version});