Skip to content

Commit 40b1ce9

Browse files
sapphi-reddominikgAdrianGonz97
authored
fix: set overrides without special syntax to devDeps (#400)
Co-authored-by: "Dominik G." <[email protected]> Co-authored-by: CokaKoala <[email protected]>
1 parent 52222d3 commit 40b1ce9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ export async function applyPackageOverrides(
555555
const overridesWithoutSpecialSyntax = Object.fromEntries(
556556
Object.entries(overrides)
557557
//eslint-disable-next-line @typescript-eslint/no-unused-vars
558-
.filter(([key, value]) => (value as string).includes('>')),
558+
.filter(([key, value]) => !key.includes('>')),
559559
)
560560

561561
if (!pkg.devDependencies) {

0 commit comments

Comments
 (0)