Skip to content

Commit

Permalink
resolve code review suggested change from renovatebot#31002
Browse files Browse the repository at this point in the history
  • Loading branch information
SnakeDoc committed Dec 7, 2024
1 parent 6e1d6d1 commit 385e9ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/manager/gleam/artifacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export async function updateArtifacts(
// `gleam deps update` with no packages rebuilds the lock file
const packagesToUpdate = isLockFileMaintenance
? []
: updatedDeps.map((dep) => dep.depName).filter(Boolean);
: updatedDeps.map((dep) => dep.depName).filter(is.string);

const updateCommand = ['gleam deps update', ...packagesToUpdate].join(' ');
await exec(updateCommand, execOptions);
Expand Down

0 comments on commit 385e9ea

Please sign in to comment.