@savvy-web/pnpm-plugin-silk 0.9.0 → 0.10.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 -0
- package/index.cjs +45 -29
- package/package.json +1 -1
- package/pnpmfile.cjs +45 -39
package/README.md
CHANGED
|
@@ -20,6 +20,8 @@ of truth.
|
|
|
20
20
|
`publicHoistPattern` settings across repositories
|
|
21
21
|
- **Biome schema sync** - Automatically updates `$schema` URLs in
|
|
22
22
|
`biome.json`/`biome.jsonc` files to match the catalog version
|
|
23
|
+
- **Effect ecosystem management** - 19 coordinated `@effect/*` packages across
|
|
24
|
+
six functional groups with compatible version resolution
|
|
23
25
|
- **Non-destructive merging** - Local definitions always take precedence with
|
|
24
26
|
clear warnings for divergences
|
|
25
27
|
|
package/index.cjs
CHANGED
|
@@ -27,41 +27,55 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
27
27
|
});
|
|
28
28
|
const silkCatalogs = {
|
|
29
29
|
silk: {
|
|
30
|
-
"@
|
|
31
|
-
"@effect/
|
|
32
|
-
"@effect/
|
|
33
|
-
"@effect/
|
|
34
|
-
"@effect/
|
|
35
|
-
"@effect/
|
|
36
|
-
"@effect/
|
|
37
|
-
"@effect/
|
|
38
|
-
"@effect/
|
|
39
|
-
"@effect/
|
|
40
|
-
"@effect/
|
|
41
|
-
"@effect/
|
|
30
|
+
"@biomejs/biome": "2.4.9",
|
|
31
|
+
"@effect/ai": "^0.35.0",
|
|
32
|
+
"@effect/ai-anthropic": "^0.25.0",
|
|
33
|
+
"@effect/ai-openai": "^0.39.0",
|
|
34
|
+
"@effect/cli": "^0.75.0",
|
|
35
|
+
"@effect/cluster": "^0.58.0",
|
|
36
|
+
"@effect/experimental": "^0.60.0",
|
|
37
|
+
"@effect/language-service": "^0.84.0",
|
|
38
|
+
"@effect/opentelemetry": "^0.63.0",
|
|
39
|
+
"@effect/platform": "^0.96.0",
|
|
40
|
+
"@effect/platform-bun": "^0.89.0",
|
|
41
|
+
"@effect/platform-node": "^0.106.0",
|
|
42
|
+
"@effect/printer": "^0.49.0",
|
|
43
|
+
"@effect/printer-ansi": "^0.49.0",
|
|
44
|
+
"@effect/rpc": "^0.75.0",
|
|
45
|
+
"@effect/sql": "^0.51.0",
|
|
46
|
+
"@effect/sql-sqlite-node": "^0.52.0",
|
|
47
|
+
"@effect/typeclass": "^0.40.0",
|
|
48
|
+
"@effect/workflow": "^0.18.0",
|
|
42
49
|
"@types/node": "^25.5.0",
|
|
43
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
44
|
-
effect: "^3.
|
|
50
|
+
"@typescript/native-preview": "^7.0.0-dev.20260326.1",
|
|
51
|
+
effect: "^3.21.0",
|
|
45
52
|
husky: "^9.1.7",
|
|
46
53
|
tsx: "^4.21.0",
|
|
47
54
|
typescript: "^5.9.3"
|
|
48
55
|
},
|
|
49
56
|
silkPeers: {
|
|
50
|
-
"@
|
|
51
|
-
"@effect/
|
|
52
|
-
"@effect/
|
|
53
|
-
"@effect/
|
|
54
|
-
"@effect/
|
|
55
|
-
"@effect/
|
|
56
|
-
"@effect/
|
|
57
|
-
"@effect/
|
|
58
|
-
"@effect/
|
|
59
|
-
"@effect/
|
|
60
|
-
"@effect/
|
|
61
|
-
"@effect/
|
|
62
|
-
"@
|
|
57
|
+
"@biomejs/biome": "2.4.9",
|
|
58
|
+
"@effect/ai": ">=0.35.0",
|
|
59
|
+
"@effect/ai-anthropic": ">=0.25.0",
|
|
60
|
+
"@effect/ai-openai": ">=0.39.0",
|
|
61
|
+
"@effect/cli": ">=0.75.0",
|
|
62
|
+
"@effect/cluster": ">=0.58.0",
|
|
63
|
+
"@effect/experimental": ">=0.60.0",
|
|
64
|
+
"@effect/language-service": ">=0.84.0",
|
|
65
|
+
"@effect/opentelemetry": ">=0.63.0",
|
|
66
|
+
"@effect/platform": ">=0.96.0",
|
|
67
|
+
"@effect/platform-bun": ">=0.89.0",
|
|
68
|
+
"@effect/platform-node": ">=0.106.0",
|
|
69
|
+
"@effect/printer": ">=0.49.0",
|
|
70
|
+
"@effect/printer-ansi": ">=0.49.0",
|
|
71
|
+
"@effect/rpc": ">=0.75.0",
|
|
72
|
+
"@effect/sql": ">=0.51.0",
|
|
73
|
+
"@effect/sql-sqlite-node": ">=0.52.0",
|
|
74
|
+
"@effect/typeclass": ">=0.40.0",
|
|
75
|
+
"@effect/workflow": ">=0.18.0",
|
|
76
|
+
"@types/node": "^25.5.0",
|
|
63
77
|
"@typescript/native-preview": "^7.0.0-dev.20260124.1",
|
|
64
|
-
effect: "
|
|
78
|
+
effect: ">=3.21.0",
|
|
65
79
|
husky: "^9.1.0",
|
|
66
80
|
tsx: "^4.21.0",
|
|
67
81
|
typescript: "^5.9.3"
|
|
@@ -80,6 +94,7 @@ const silkCatalogs = {
|
|
|
80
94
|
"@savvy-web/github-action-builder",
|
|
81
95
|
"@savvy-web/lint-staged",
|
|
82
96
|
"@savvy-web/vitest",
|
|
97
|
+
"better-sqlite3",
|
|
83
98
|
"core-js",
|
|
84
99
|
"esbuild",
|
|
85
100
|
"msgpackr-extract"
|
|
@@ -102,7 +117,8 @@ const silkCatalogs = {
|
|
|
102
117
|
"tsx",
|
|
103
118
|
"turbo",
|
|
104
119
|
"typescript",
|
|
105
|
-
"vitest"
|
|
120
|
+
"vitest",
|
|
121
|
+
"vitest-agent-reporter"
|
|
106
122
|
]
|
|
107
123
|
};
|
|
108
124
|
exports.silkCatalogs = __webpack_exports__.silkCatalogs;
|
package/package.json
CHANGED
package/pnpmfile.cjs
CHANGED
|
@@ -233,41 +233,55 @@ var __webpack_exports__ = {};
|
|
|
233
233
|
(()=>{
|
|
234
234
|
const silkCatalogs = {
|
|
235
235
|
silk: {
|
|
236
|
-
"@
|
|
237
|
-
"@effect/
|
|
238
|
-
"@effect/
|
|
239
|
-
"@effect/
|
|
240
|
-
"@effect/
|
|
241
|
-
"@effect/
|
|
242
|
-
"@effect/
|
|
243
|
-
"@effect/
|
|
244
|
-
"@effect/
|
|
245
|
-
"@effect/
|
|
246
|
-
"@effect/
|
|
247
|
-
"@effect/
|
|
236
|
+
"@biomejs/biome": "2.4.9",
|
|
237
|
+
"@effect/ai": "^0.35.0",
|
|
238
|
+
"@effect/ai-anthropic": "^0.25.0",
|
|
239
|
+
"@effect/ai-openai": "^0.39.0",
|
|
240
|
+
"@effect/cli": "^0.75.0",
|
|
241
|
+
"@effect/cluster": "^0.58.0",
|
|
242
|
+
"@effect/experimental": "^0.60.0",
|
|
243
|
+
"@effect/language-service": "^0.84.0",
|
|
244
|
+
"@effect/opentelemetry": "^0.63.0",
|
|
245
|
+
"@effect/platform": "^0.96.0",
|
|
246
|
+
"@effect/platform-bun": "^0.89.0",
|
|
247
|
+
"@effect/platform-node": "^0.106.0",
|
|
248
|
+
"@effect/printer": "^0.49.0",
|
|
249
|
+
"@effect/printer-ansi": "^0.49.0",
|
|
250
|
+
"@effect/rpc": "^0.75.0",
|
|
251
|
+
"@effect/sql": "^0.51.0",
|
|
252
|
+
"@effect/sql-sqlite-node": "^0.52.0",
|
|
253
|
+
"@effect/typeclass": "^0.40.0",
|
|
254
|
+
"@effect/workflow": "^0.18.0",
|
|
248
255
|
"@types/node": "^25.5.0",
|
|
249
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
250
|
-
effect: "^3.
|
|
256
|
+
"@typescript/native-preview": "^7.0.0-dev.20260326.1",
|
|
257
|
+
effect: "^3.21.0",
|
|
251
258
|
husky: "^9.1.7",
|
|
252
259
|
tsx: "^4.21.0",
|
|
253
260
|
typescript: "^5.9.3"
|
|
254
261
|
},
|
|
255
262
|
silkPeers: {
|
|
256
|
-
"@
|
|
257
|
-
"@effect/
|
|
258
|
-
"@effect/
|
|
259
|
-
"@effect/
|
|
260
|
-
"@effect/
|
|
261
|
-
"@effect/
|
|
262
|
-
"@effect/
|
|
263
|
-
"@effect/
|
|
264
|
-
"@effect/
|
|
265
|
-
"@effect/
|
|
266
|
-
"@effect/
|
|
267
|
-
"@effect/
|
|
268
|
-
"@
|
|
263
|
+
"@biomejs/biome": "2.4.9",
|
|
264
|
+
"@effect/ai": ">=0.35.0",
|
|
265
|
+
"@effect/ai-anthropic": ">=0.25.0",
|
|
266
|
+
"@effect/ai-openai": ">=0.39.0",
|
|
267
|
+
"@effect/cli": ">=0.75.0",
|
|
268
|
+
"@effect/cluster": ">=0.58.0",
|
|
269
|
+
"@effect/experimental": ">=0.60.0",
|
|
270
|
+
"@effect/language-service": ">=0.84.0",
|
|
271
|
+
"@effect/opentelemetry": ">=0.63.0",
|
|
272
|
+
"@effect/platform": ">=0.96.0",
|
|
273
|
+
"@effect/platform-bun": ">=0.89.0",
|
|
274
|
+
"@effect/platform-node": ">=0.106.0",
|
|
275
|
+
"@effect/printer": ">=0.49.0",
|
|
276
|
+
"@effect/printer-ansi": ">=0.49.0",
|
|
277
|
+
"@effect/rpc": ">=0.75.0",
|
|
278
|
+
"@effect/sql": ">=0.51.0",
|
|
279
|
+
"@effect/sql-sqlite-node": ">=0.52.0",
|
|
280
|
+
"@effect/typeclass": ">=0.40.0",
|
|
281
|
+
"@effect/workflow": ">=0.18.0",
|
|
282
|
+
"@types/node": "^25.5.0",
|
|
269
283
|
"@typescript/native-preview": "^7.0.0-dev.20260124.1",
|
|
270
|
-
effect: "
|
|
284
|
+
effect: ">=3.21.0",
|
|
271
285
|
husky: "^9.1.0",
|
|
272
286
|
tsx: "^4.21.0",
|
|
273
287
|
typescript: "^5.9.3"
|
|
@@ -286,6 +300,7 @@ var __webpack_exports__ = {};
|
|
|
286
300
|
"@savvy-web/github-action-builder",
|
|
287
301
|
"@savvy-web/lint-staged",
|
|
288
302
|
"@savvy-web/vitest",
|
|
303
|
+
"better-sqlite3",
|
|
289
304
|
"core-js",
|
|
290
305
|
"esbuild",
|
|
291
306
|
"msgpackr-extract"
|
|
@@ -308,7 +323,8 @@ var __webpack_exports__ = {};
|
|
|
308
323
|
"tsx",
|
|
309
324
|
"turbo",
|
|
310
325
|
"typescript",
|
|
311
|
-
"vitest"
|
|
326
|
+
"vitest",
|
|
327
|
+
"vitest-agent-reporter"
|
|
312
328
|
]
|
|
313
329
|
};
|
|
314
330
|
const promises_namespaceObject = require("node:fs/promises");
|
|
@@ -1537,15 +1553,6 @@ var __webpack_exports__ = {};
|
|
|
1537
1553
|
function extractSemver(versionRange) {
|
|
1538
1554
|
return versionRange.replace(/^[^\d]*/, "");
|
|
1539
1555
|
}
|
|
1540
|
-
async function shouldSyncBiomeSchema(workspaceRoot) {
|
|
1541
|
-
try {
|
|
1542
|
-
const pkgPath = (0, external_node_path_namespaceObject.join)(workspaceRoot, "package.json");
|
|
1543
|
-
const pkgJson = JSON.parse(await (0, promises_namespaceObject.readFile)(pkgPath, "utf-8"));
|
|
1544
|
-
return pkgJson.dependencies?.["@savvy-web/lint-staged"] !== void 0 || pkgJson.devDependencies?.["@savvy-web/lint-staged"] !== void 0;
|
|
1545
|
-
} catch {
|
|
1546
|
-
return false;
|
|
1547
|
-
}
|
|
1548
|
-
}
|
|
1549
1556
|
async function parseGitignorePatterns(workspaceRoot) {
|
|
1550
1557
|
try {
|
|
1551
1558
|
const content = await (0, promises_namespaceObject.readFile)((0, external_node_path_namespaceObject.join)(workspaceRoot, ".gitignore"), "utf-8");
|
|
@@ -1568,7 +1575,6 @@ var __webpack_exports__ = {};
|
|
|
1568
1575
|
}
|
|
1569
1576
|
async function syncBiomeSchema(workspaceRoot, biomeVersion) {
|
|
1570
1577
|
try {
|
|
1571
|
-
if (!await shouldSyncBiomeSchema(workspaceRoot)) return;
|
|
1572
1578
|
const version = extractSemver(biomeVersion);
|
|
1573
1579
|
const expectedUrl = buildSchemaUrl(version);
|
|
1574
1580
|
const configs = await findBiomeConfigs(workspaceRoot);
|