Skip to content

Commit

Permalink
Fix: Changes not detected by changeset cli 2.23.1
Browse files Browse the repository at this point in the history
Not include ignore.
  • Loading branch information
NicoKam committed Jul 13, 2022
1 parent b812293 commit 5ee41cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/add/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default async function add(
});
const changePackagesName = changedPackages
.map(pkg => pkg.packageJson.name)
.filter(pkgName => config.ignore.includes(pkgName));
.filter(pkgName => !config.ignore.includes(pkgName));

newChangeset = await createChangeset(changePackagesName, packages);
printConfirmationMessage(newChangeset, packages.length > 1);
Expand Down

0 comments on commit 5ee41cf

Please sign in to comment.