Skip to content

Commit 6955a2e

Browse files
committed
fix: fix lodash to camel-case import in @commitlint/lint package
1 parent e6535c4 commit 6955a2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

@commitlint/lint/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import util from 'util';
22
import isIgnored from '@commitlint/is-ignored';
33
import parse from '@commitlint/parse';
44
import implementations from '@commitlint/rules';
5-
import entries from 'lodash/topairs';
5+
import entries from 'lodash/toPairs';
66

77
const buildCommitMesage = ({header, body, footer}) => {
88
let message = header;

0 commit comments

Comments
 (0)