We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0951935 commit 4b2fd4cCopy full SHA for 4b2fd4c
scripts/update-version.ts
@@ -42,7 +42,8 @@ function update(path: string) {
42
}
43
44
const program = Effect.gen(function*() {
45
- return yield* Effect.all(glob(GLOB_PACKAGE_JSON, yield* ignores).map(update), { concurrency: 8 });
+ const ignorePatterns = yield* ignores;
46
+ return yield* Effect.all(glob(GLOB_PACKAGE_JSON, ignorePatterns).map(update), { concurrency: 8 });
47
});
48
49
program.pipe(
0 commit comments