Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Sep 13, 2021
1 parent 5a3f979 commit 4696cbb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion cli.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env node
import process from 'node:process';
import getStdin from 'get-stdin';
import meow from 'meow';
import hasAnsi from 'has-ansi';
Expand All @@ -12,7 +13,9 @@ const cli = meow(`
$ ls --color | has-ansi && echo 'has ansi'
Exits with code 0 if input has ANSI escape codes and 1 if not
`);
`, {
importMeta: import.meta,
});

const input = cli.input[0];

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@
],
"dependencies": {
"get-stdin": "^9.0.0",
"has-ansi": "^5.0.0",
"meow": "^9.0.0"
"has-ansi": "^5.0.1",
"meow": "^10.1.1"
},
"devDependencies": {
"ava": "^3.15.0",
"execa": "^5.0.0",
"xo": "^0.38.2"
"execa": "^5.1.1",
"xo": "^0.44.0"
}
}

0 comments on commit 4696cbb

Please sign in to comment.