@savvy-web/pnpm-plugin-silk 0.12.1 → 0.13.0

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 CHANGED
@@ -18,6 +18,8 @@ of truth.
18
18
  propagate to all consuming repositories
19
19
  - **Build configuration sync** - Shared `onlyBuiltDependencies` and
20
20
  `publicHoistPattern` settings across repositories
21
+ - **Peer dependency rules** - Syncs `peerDependencyRules` (allowedVersions,
22
+ ignoreMissing, allowAny) to suppress common peer warnings
21
23
  - **Effect ecosystem management** - 24 coordinated `@effect/*` packages across
22
24
  seven functional groups with compatible version resolution
23
25
  - **Non-destructive merging** - Local definitions always take precedence with
package/index.cjs CHANGED
@@ -23,6 +23,7 @@ var __webpack_require__ = {};
23
23
  var __webpack_exports__ = {};
24
24
  __webpack_require__.r(__webpack_exports__);
25
25
  __webpack_require__.d(__webpack_exports__, {
26
+ silkPeerDependencyRules: ()=>silkPeerDependencyRules,
26
27
  silkCatalogs: ()=>silkCatalogs
27
28
  });
28
29
  const silkCatalogs = {
@@ -54,7 +55,7 @@ const silkCatalogs = {
54
55
  "@types/node": "^25.6.0",
55
56
  "@types/react": "^19.2.14",
56
57
  "@types/react-dom": "^19.2.3",
57
- "@typescript/native-preview": "^7.0.0-dev.20260422.1",
58
+ "@typescript/native-preview": "^7.0.0-dev.20260424.2",
58
59
  effect: "^3.21.2",
59
60
  react: "^19.2.5",
60
61
  "react-dom": "^19.2.5",
@@ -140,9 +141,23 @@ const silkCatalogs = {
140
141
  "vitest-agent-reporter"
141
142
  ]
142
143
  };
144
+ const silkPeerDependencyRules = {
145
+ allowedVersions: {
146
+ "@typescript-eslint/project-service>typescript": "^6.0.0",
147
+ "@typescript-eslint/tsconfig-utils>typescript": "^6.0.0",
148
+ "@typescript-eslint/typescript-estree>typescript": "^6.0.0",
149
+ "@typescript-eslint/util>typescript": "^6.0.0",
150
+ "@typescript-eslint/utils>typescript": "^6.0.0",
151
+ "eslint-plugin-tsdoc>typescript": "^6.0.0"
152
+ },
153
+ ignoreMissing: [],
154
+ allowAny: []
155
+ };
143
156
  exports.silkCatalogs = __webpack_exports__.silkCatalogs;
157
+ exports.silkPeerDependencyRules = __webpack_exports__.silkPeerDependencyRules;
144
158
  for(var __rspack_i in __webpack_exports__)if (-1 === [
145
- "silkCatalogs"
159
+ "silkCatalogs",
160
+ "silkPeerDependencyRules"
146
161
  ].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
147
162
  Object.defineProperty(exports, '__esModule', {
148
163
  value: true
package/index.d.cts CHANGED
@@ -100,4 +100,30 @@ export declare interface SilkCatalogs {
100
100
  */
101
101
  export declare const silkCatalogs: SilkCatalogs;
102
102
 
103
+ /**
104
+ * Peer dependency rules synced from the Silk plugin workspace.
105
+ *
106
+ * @public
107
+ */
108
+ export declare interface SilkPeerDependencyRules {
109
+ /**
110
+ * Version ranges that suppress unmet peer dependency warnings.
111
+ * Keys are "package\>peer" dependency paths.
112
+ */
113
+ readonly allowedVersions: Record<string, string>;
114
+ /**
115
+ * Package names whose missing peer dependency warnings are suppressed.
116
+ */
117
+ readonly ignoreMissing: readonly string[];
118
+ /**
119
+ * Package patterns that resolve to any version regardless of peer range.
120
+ */
121
+ readonly allowAny: readonly string[];
122
+ }
123
+
124
+ /**
125
+ * Peer dependency rules generated from pnpm-workspace.yaml.
126
+ */
127
+ export declare const silkPeerDependencyRules: SilkPeerDependencyRules;
128
+
103
129
  export { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/pnpm-plugin-silk",
3
- "version": "0.12.1",
3
+ "version": "0.13.0",
4
4
  "private": false,
5
5
  "description": "pnpm config dependency for centralized catalog management across the Silk ecosystem.",
6
6
  "keywords": [