We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6720284 commit c8c81d0Copy full SHA for c8c81d0
@commitlint/prompt-cli/cli.js
@@ -1,17 +1,11 @@
1
#!/usr/bin/env node
2
const execa = require('execa');
3
-const meow = require('meow');
4
const {prompter} = require('@commitlint/prompt');
5
6
-const HELP = `
7
- Usage
8
- $ commit
9
-`;
10
-
11
const _ = undefined;
12
const prompt = () => prompter(_, commit);
13
14
-main(meow(HELP)).catch(err => {
+main().catch(err => {
15
setTimeout(() => {
16
throw err;
17
});
@commitlint/prompt-cli/package.json
@@ -40,7 +40,6 @@
40
"dependencies": {
41
"@commitlint/prompt": "^7.3.1",
42
"execa": "0.9.0",
43
- "meow": "3.7.0",
44
"string-to-stream": "1.1.1"
45
}
46
0 commit comments