Skip to content

Commit

Permalink
Bump dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jan 25, 2019
1 parent f4f3cc3 commit 865b0d6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ module.exports = (str, begin, end) => {
if (escapeCode !== null) {
output += wrapAnsi(ansiStyles.codes.get(parseInt(escapeCode, 10)) || END_CODE);
}

break;
}
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"is-fullwidth-code-point": "^2.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"chalk": "^2.0.1",
"ava": "^1.1.0",
"chalk": "^2.4.2",
"random-item": "^1.0.0",
"strip-ansi": "^5.0.0",
"xo": "^0.23.0"
"xo": "^0.24.0"
}
}
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function gen(str) {
return `${str}:${chalk[rand2](rand1)} `;
}

test(t => {
test('main', t => {
// The slice should behave exactly as a regular JS slice behaves
for (let i = 0; i < 20; i++) {
for (let j = 19; j > i; j--) {
Expand Down

0 comments on commit 865b0d6

Please sign in to comment.