@effected/workspaces 0.13.1 → 0.14.1
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.
- package/README.md +2 -2
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
Monorepo workspace tooling for [Effect](https://effect.website) v4: find the workspace root, enumerate its packages, walk the dependency graph, detect the package manager, resolve pnpm catalogs, read the lockfile and work out which packages a git range touches. Every capability is a service you provide at the edge and swap in tests. Works with npm, pnpm, yarn Berry and bun.
|
|
9
9
|
|
|
10
10
|
> **Pre-release.** This package is part of the `@effected/*` kit, in pre-`1.0.0`
|
|
11
|
-
> development against a single pinned Effect v4
|
|
11
|
+
> development against a single pinned Effect v4 prerelease. Packages graduate to
|
|
12
12
|
> `1.0.0` once Effect `4.0.0` ships. To hold your own `effect` versions at
|
|
13
13
|
> exactly the ones the kit is built and tested against, install
|
|
14
14
|
> [`@effected/pnpm-plugin-effect`](https://www.npmjs.com/package/@effected/pnpm-plugin-effect).
|
|
@@ -185,7 +185,7 @@ Windows correctness is therefore the operations you pass, and nothing else. Both
|
|
|
185
185
|
|
|
186
186
|
## Error handling
|
|
187
187
|
|
|
188
|
-
Every failure is a `Schema.
|
|
188
|
+
Every failure is a `Schema.TaggedError` with structured fields you can branch on, not a prose string:
|
|
189
189
|
|
|
190
190
|
```ts
|
|
191
191
|
import { WorkspaceDiscovery, WorkspacePatternError } from "@effected/workspaces";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effected/workspaces",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.1",
|
|
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": [
|
|
@@ -46,22 +46,22 @@
|
|
|
46
46
|
"./package.json": "./package.json"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@effected/commands": "^0.
|
|
50
|
-
"@effected/git": "^0.
|
|
51
|
-
"@effected/glob": "^0.
|
|
52
|
-
"@effected/lockfiles": "^0.
|
|
53
|
-
"@effected/npm": "^0.
|
|
54
|
-
"@effected/package-json": "^0.
|
|
55
|
-
"@effected/semver": "^0.
|
|
56
|
-
"@effected/walker": "^0.
|
|
57
|
-
"@effected/yaml": "^0.
|
|
58
|
-
"@pnpm/catalogs.config": "^1100.0.
|
|
49
|
+
"@effected/commands": "^0.5.0",
|
|
50
|
+
"@effected/git": "^0.9.0",
|
|
51
|
+
"@effected/glob": "^0.4.0",
|
|
52
|
+
"@effected/lockfiles": "^0.5.0",
|
|
53
|
+
"@effected/npm": "^0.10.0",
|
|
54
|
+
"@effected/package-json": "^0.10.1",
|
|
55
|
+
"@effected/semver": "^0.5.0",
|
|
56
|
+
"@effected/walker": "^0.5.0",
|
|
57
|
+
"@effected/yaml": "^0.10.0",
|
|
58
|
+
"@pnpm/catalogs.config": "^1100.0.5",
|
|
59
59
|
"@pnpm/catalogs.protocol-parser": "^1100.0.0",
|
|
60
60
|
"@pnpm/catalogs.resolver": "^1100.0.0",
|
|
61
61
|
"@pnpm/catalogs.types": "^1100.0.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
|
-
"effect": "4.0.0-
|
|
64
|
+
"effect": "4.0.0-rc.109"
|
|
65
65
|
},
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=24.11.0"
|