Skip to content

Commit

Permalink
fix(cli): update to support new package versions (#5215)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblack authored Jan 30, 2020
1 parent 132dbfb commit 4ff4fbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

'use strict';

const parse = require('@commitlint/parse');
const { default: parse } = require('@commitlint/parse');
const execa = require('execa');

// We keep a list of commits that are process-oriented that we never want to
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/workspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const packagePaths = fs
.readdirSync(PACKAGES_DIR)
.filter(basename => {
const filename = path.join(PACKAGES_DIR, basename);
if (!denylist.has(filename)) {
if (denylist.has(filename)) {
return false;
}

Expand Down

0 comments on commit 4ff4fbb

Please sign in to comment.