Skip to content

Commit 4b2fd4c

Browse files
committed
chore: minor improvements
1 parent 0951935 commit 4b2fd4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/update-version.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ function update(path: string) {
4242
}
4343

4444
const program = Effect.gen(function*() {
45-
return yield* Effect.all(glob(GLOB_PACKAGE_JSON, yield* ignores).map(update), { concurrency: 8 });
45+
const ignorePatterns = yield* ignores;
46+
return yield* Effect.all(glob(GLOB_PACKAGE_JSON, ignorePatterns).map(update), { concurrency: 8 });
4647
});
4748

4849
program.pipe(

0 commit comments

Comments
 (0)