@effected/workspaces 0.17.0 → 0.17.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,10 +27,14 @@ const enumerate = (root, globs, options) => Effect.gen(function* () {
27
27
  pattern,
28
28
  detail: stop.detail
29
29
  });
30
- for (const literal of globs.literals) {
31
- if (isExcluded(literal)) continue;
30
+ const literalHits = yield* Effect.forEach(globs.literals, (literal) => Effect.gen(function* () {
31
+ if (isExcluded(literal)) return void 0;
32
32
  const absolute = path.join(root, literal);
33
- if (yield* isPackage(absolute)) included.set(literal, absolute);
33
+ return (yield* isPackage(absolute)) ? [literal, absolute] : void 0;
34
+ }), { concurrency: 10 });
35
+ for (const hit of literalHits) {
36
+ if (hit === void 0) continue;
37
+ included.set(hit[0], hit[1]);
34
38
  }
35
39
  for (const wildcard of globs.wildcards) {
36
40
  const base = baseOf(wildcard);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effected/workspaces",
3
- "version": "0.17.0",
3
+ "version": "0.17.2",
4
4
  "private": false,
5
5
  "description": "Monorepo workspace tooling as Effect services — root discovery, package enumeration, the dependency graph, package-manager detection, pnpm catalog resolution, lockfile IO and git-based change detection.",
6
6
  "keywords": [
@@ -49,12 +49,12 @@
49
49
  "@effected/commands": "^0.5.0",
50
50
  "@effected/git": "^0.9.0",
51
51
  "@effected/glob": "^0.4.0",
52
- "@effected/lockfiles": "^0.6.2",
52
+ "@effected/lockfiles": "^0.6.3",
53
53
  "@effected/npm": "^0.11.1",
54
54
  "@effected/package-json": "^0.10.2",
55
55
  "@effected/semver": "^0.5.0",
56
56
  "@effected/walker": "^0.5.0",
57
- "@effected/yaml": "^0.10.0",
57
+ "@effected/yaml": "^0.11.0",
58
58
  "@pnpm/catalogs.config": "^1100.0.5",
59
59
  "@pnpm/catalogs.protocol-parser": "^1100.0.0",
60
60
  "@pnpm/catalogs.resolver": "^1100.0.0",
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.58.13"
8
+ "packageVersion": "7.59.0"
9
9
  }
10
10
  ]
11
11
  }