Skip to content

Commit

Permalink
Fixed a typo in a variable name (#1005)
Browse files Browse the repository at this point in the history
* fix(changelog-git): typo on variable name

* Rename variable

Co-authored-by: Mateusz Burzy艅ski <mateuszburzynski@gmail.com>
  • Loading branch information
tbor00 and Andarist committed Nov 5, 2022
1 parent 193bcab commit 4acaff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/changelog-git/src/index.ts
Expand Up @@ -37,11 +37,11 @@ const getDependencyReleaseLine = async (
}`
);

const updatedDepenenciesList = dependenciesUpdated.map(
const updatedDependenciesList = dependenciesUpdated.map(
(dependency) => ` - ${dependency.name}@${dependency.newVersion}`
);

return [...changesetLinks, ...updatedDepenenciesList].join("\n");
return [...changesetLinks, ...updatedDependenciesList].join("\n");
};

const defaultChangelogFunctions: ChangelogFunctions = {
Expand Down

0 comments on commit 4acaff7

Please sign in to comment.