We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf028ce commit 7600e5dCopy full SHA for 7600e5d
@commitlint/cli/cli-bin.js renamed to @commitlint/cli/cli.js
@commitlint/cli/index.js
@@ -1,3 +1,3 @@
1
const path = require('path');
2
3
-module.exports = path.join(__dirname, 'cli-bin.js');
+module.exports = path.join(__dirname, 'cli.js');
@commitlint/cli/package.json
@@ -8,7 +8,7 @@
8
"lib"
9
],
10
"bin": {
11
- "commitlint": "./cli-bin.js"
+ "commitlint": "./cli.js"
12
},
13
"scripts": {
14
"deps": "dep-check",
@commitlint/cli/src/cli.test.ts
@@ -4,7 +4,7 @@ import execa from 'execa';
4
import merge from 'lodash/merge';
5
import fs from 'fs-extra';
6
7
-const bin = require.resolve('../cli-bin.js');
+const bin = require.resolve('../cli.js');
interface TestOptions {
cwd: string;
0 commit comments