From 3e4bb40990c4849912ff7eddf595d0823cdfcbb1 Mon Sep 17 00:00:00 2001 From: Pierre Vanduynslager Date: Fri, 7 Jun 2019 13:35:34 -0400 Subject: [PATCH] style: fix prettier style --- index.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/index.js b/index.js index 0a7b7ede..985c9159 100644 --- a/index.js +++ b/index.js @@ -76,9 +76,7 @@ async function run(context, plugins) { } catch (error) { if (!(await isBranchUpToDate(options.repositoryUrl, context.branch.name, {cwd, env}))) { logger.log( - `The local branch ${ - context.branch.name - } is behind the remote one, therefore a new version won't be published.` + `The local branch ${context.branch.name} is behind the remote one, therefore a new version won't be published.` ); return false; } @@ -130,9 +128,7 @@ async function run(context, plugins) { if (context.lastRelease.gitTag) { logger.log( - `Found git tag ${context.lastRelease.gitTag} associated with version ${context.lastRelease.version} on branch ${ - context.branch.name - }` + `Found git tag ${context.lastRelease.gitTag} associated with version ${context.lastRelease.version} on branch ${context.branch.name}` ); } else { logger.log(`No git tag version found on branch ${context.branch.name}`);