Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
caseywebdev committed Apr 3, 2020
1 parent e0395d6 commit 647f42d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "watchy",
"version": "0.9.7",
"version": "0.9.8",
"author": "Casey Foster <c@sey.me>",
"license": "MIT",
"main": "src",
Expand All @@ -12,9 +12,9 @@
"watchy": "bin/watchy"
},
"dependencies": {
"chalk": "2",
"chalk": "4",
"chokidar": "3",
"commander": "2",
"commander": "5",
"underscore": "1"
}
}
5 changes: 2 additions & 3 deletions src/get-log.js
@@ -1,9 +1,8 @@
const _ = require('underscore');
const chalk = require('chalk');
const _ = require('underscore');

module.exports = ({ useColor, onlyErrors }) => {
const { green, red } = new chalk.constructor({
enabled: useColor,
const { green, red } = new chalk.Instance({
level: useColor ? 1 : 0
});

Expand Down

0 comments on commit 647f42d

Please sign in to comment.