chore(): update deps

This commit is contained in:
Manu Mtz.-Almeida
2018-07-29 01:44:45 +02:00
parent 7813acc86f
commit b69098a77d
7 changed files with 40 additions and 45 deletions

View File

@@ -3,7 +3,7 @@ const path = require('path');
const execa = require('execa');
const Listr = require('listr');
const semver = require('semver');
const chalk = require('chalk');
const tc = require('turbocolor');
const rootDir = path.join(__dirname, '../');
@@ -132,7 +132,7 @@ function preparePackage(tasks, package, version) {
// Add project tasks
tasks.push({
title: `Prepare ${chalk.bold(pkg.name)}`,
title: `Prepare ${tc.bold(pkg.name)}`,
task: () => new Listr(projectTasks)
});
}