Skip to content

Commit

Permalink
fix(cli): don't put console colors in after upgrade plugins git commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Feb 22, 2019
1 parent 7a25353 commit 48dd312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@nodepack/cli/src/lib/PluginUpgradeJob.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ module.exports = class PluginUpgradeJob {
},
after: async ({ shouldCommitState }) => {
const count = queuedUpdates.length
await shouldCommitState(`[nodepack] after upgrade ${chalk.yellow(`${count} plugin${count > 1 ? 's' : ''}`)}`, true)
await shouldCommitState(`[nodepack] after upgrade ${count} plugin${count > 1 ? 's' : ''}`, true)
log(`🎉 Successfully upgraded ${chalk.yellow(`${count} plugin${count > 1 ? 's' : ''}`)}.`)
},
})
Expand Down

0 comments on commit 48dd312

Please sign in to comment.