@effected/workspaces 0.15.0 → 0.15.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/PeerCheck.js +5 -1
- package/package.json +2 -2
package/PeerCheck.js
CHANGED
|
@@ -308,7 +308,11 @@ const collect = (importerPath, roots, byId, rows, seen, allowed) => {
|
|
|
308
308
|
* `"react-dom@18.0.0>react"` suppresses a `react-dom@18.3.1` instance too.
|
|
309
309
|
* Replicating that is not optional: matching on the version would suppress a
|
|
310
310
|
* strictly smaller set than pnpm does, and every row in the difference is a
|
|
311
|
-
* false positive.
|
|
311
|
+
* false positive. Measured against pnpm 11.22.0, one axis at a time: a rule
|
|
312
|
+
* keyed at a version the installed parent does not have still suppresses, and
|
|
313
|
+
* so does one keyed at a wildly different version, while a rule keyed on an
|
|
314
|
+
* ANCESTOR of the declaring package suppresses nothing. The parent is the
|
|
315
|
+
* declarer, matched by name.
|
|
312
316
|
*
|
|
313
317
|
* Both spellings occur in the wild and both must work — parent-versioned, as
|
|
314
318
|
* `pnpm:export` materializes into `pnpm-workspace.yaml`, and unversioned, as a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effected/workspaces",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.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": [
|
|
@@ -49,7 +49,7 @@
|
|
|
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.
|
|
52
|
+
"@effected/lockfiles": "^0.6.1",
|
|
53
53
|
"@effected/npm": "^0.11.0",
|
|
54
54
|
"@effected/package-json": "^0.10.2",
|
|
55
55
|
"@effected/semver": "^0.5.0",
|