Skip to content

Commit

Permalink
fix(dependencies): swapped chalk for the cli-messages package
Browse files Browse the repository at this point in the history
  • Loading branch information
travi committed Apr 2, 2020
1 parent 8ed77da commit 944289f
Show file tree
Hide file tree
Showing 3 changed files with 137 additions and 23 deletions.
154 changes: 134 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"travis-lint": "^1.0.0"
},
"dependencies": {
"chalk": "^3.0.0",
"@travi/cli-messages": "^1.0.3",
"inquirer": "^7.0.0"
}
}
4 changes: 2 additions & 2 deletions src/scaffolder.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import chalk from 'chalk';
import {info} from '@travi/cli-messages';

export function scaffold({projectType}) {
console.log(chalk.blue(`Generating GitLab - ${projectType} project`)); // eslint-disable-line no-console
info(`Generating GitLab - ${projectType} project`);

return {};
}

0 comments on commit 944289f

Please sign in to comment.