We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc53952 commit 25b5861Copy full SHA for 25b5861
@commitlint/cli/src/cli.js
@@ -1,7 +1,8 @@
1
#!/usr/bin/env node
2
require('babel-polyfill'); // eslint-disable-line import/no-unassigned-import
3
4
-const load = require('@commitlint/load');
+// fix: commitlint load is ported to typescript, until this one is ported we need to unpack it
5
+const {default: load} = require('@commitlint/load');
6
const lint = require('@commitlint/lint');
7
const read = require('@commitlint/read');
8
const meow = require('meow');
0 commit comments