Skip to content

Commit

Permalink
Require Node.js 10 and upgrade chalk (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyfarrell committed Apr 26, 2020
1 parent 0e674fe commit 7d6db1d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,5 +1,5 @@
language: node_js
node_js:
- '14'
- '12'
- '10'
- '8'
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -10,7 +10,7 @@
"url": "sindresorhus.com"
},
"engines": {
"node": ">=8"
"node": ">=10"
},
"scripts": {
"test": "xo && ava && tsd"
Expand Down Expand Up @@ -38,13 +38,13 @@
"stdout"
],
"dependencies": {
"chalk": "^2.4.2"
"chalk": "^4.0.0"
},
"devDependencies": {
"ava": "^1.4.1",
"strip-ansi": "^5.2.0",
"tsd": "^0.7.2",
"xo": "^0.24.0"
"ava": "^3.7.1",
"strip-ansi": "^6.0.0",
"tsd": "^0.11.0",
"xo": "^0.28.3"
},
"browser": "browser.js"
}
6 changes: 3 additions & 3 deletions test.js
@@ -1,7 +1,7 @@
'use strict';
import test from 'ava';
import stripAnsi from 'strip-ansi';
import logSymbols from '.';
const test = require('ava');
const stripAnsi = require('strip-ansi');
const logSymbols = require('.');

for (const [key, value] of Object.entries(logSymbols)) {
console.log(value, key);
Expand Down

0 comments on commit 7d6db1d

Please sign in to comment.