@savvy-web/pnpm-plugin-silk 0.10.1 → 0.12.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 +2 -4
- package/index.cjs +30 -11
- package/package.json +1 -1
- package/pnpmfile.cjs +204 -1689
- package/tsdoc-metadata.json +1 -1
package/README.md
CHANGED
|
@@ -18,10 +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
|
-
- **
|
|
22
|
-
|
|
23
|
-
- **Effect ecosystem management** - 19 coordinated `@effect/*` packages across
|
|
24
|
-
six functional groups with compatible version resolution
|
|
21
|
+
- **Effect ecosystem management** - 24 coordinated `@effect/*` packages across
|
|
22
|
+
seven functional groups with compatible version resolution
|
|
25
23
|
- **Non-destructive merging** - Local definitions always take precedence with
|
|
26
24
|
clear warnings for divergences
|
|
27
25
|
|
package/index.cjs
CHANGED
|
@@ -27,64 +27,81 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
27
27
|
});
|
|
28
28
|
const silkCatalogs = {
|
|
29
29
|
silk: {
|
|
30
|
-
"@biomejs/biome": "2.4.9",
|
|
31
30
|
"@effect/ai": "^0.35.0",
|
|
31
|
+
"@effect/ai-amazon-bedrock": "^0.15.0",
|
|
32
32
|
"@effect/ai-anthropic": "^0.25.0",
|
|
33
|
+
"@effect/ai-google": "^0.14.0",
|
|
33
34
|
"@effect/ai-openai": "^0.39.0",
|
|
34
35
|
"@effect/cli": "^0.75.0",
|
|
35
36
|
"@effect/cluster": "^0.58.0",
|
|
36
37
|
"@effect/experimental": "^0.60.0",
|
|
37
|
-
"@effect/language-service": "^0.
|
|
38
|
+
"@effect/language-service": "^0.85.1",
|
|
38
39
|
"@effect/opentelemetry": "^0.63.0",
|
|
39
40
|
"@effect/platform": "^0.96.0",
|
|
41
|
+
"@effect/platform-browser": "^0.76.0",
|
|
40
42
|
"@effect/platform-bun": "^0.89.0",
|
|
41
43
|
"@effect/platform-node": "^0.106.0",
|
|
44
|
+
"@effect/platform-node-shared": "^0.59.0",
|
|
42
45
|
"@effect/printer": "^0.49.0",
|
|
43
46
|
"@effect/printer-ansi": "^0.49.0",
|
|
44
47
|
"@effect/rpc": "^0.75.0",
|
|
45
48
|
"@effect/sql": "^0.51.0",
|
|
49
|
+
"@effect/sql-pg": "^0.52.1",
|
|
50
|
+
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
46
51
|
"@effect/sql-sqlite-node": "^0.52.0",
|
|
47
52
|
"@effect/typeclass": "^0.40.0",
|
|
48
53
|
"@effect/workflow": "^0.18.0",
|
|
49
54
|
"@types/node": "^25.5.0",
|
|
50
|
-
"@
|
|
55
|
+
"@types/react": "^19.2.14",
|
|
56
|
+
"@types/react-dom": "^19.2.3",
|
|
57
|
+
"@typescript/native-preview": "^7.0.0-dev.20260414.1",
|
|
51
58
|
effect: "^3.21.0",
|
|
52
|
-
|
|
59
|
+
react: "^19.2.5",
|
|
60
|
+
"react-dom": "^19.2.5",
|
|
53
61
|
tsx: "^4.21.0",
|
|
54
|
-
typescript: "^
|
|
62
|
+
typescript: "^6.0.2"
|
|
55
63
|
},
|
|
56
64
|
silkPeers: {
|
|
57
|
-
"@biomejs/biome": "2.4.9",
|
|
58
65
|
"@effect/ai": ">=0.35.0",
|
|
66
|
+
"@effect/ai-amazon-bedrock": ">=0.15.0",
|
|
59
67
|
"@effect/ai-anthropic": ">=0.25.0",
|
|
68
|
+
"@effect/ai-google": ">=0.14.0",
|
|
60
69
|
"@effect/ai-openai": ">=0.39.0",
|
|
61
70
|
"@effect/cli": ">=0.75.0",
|
|
62
71
|
"@effect/cluster": ">=0.58.0",
|
|
63
72
|
"@effect/experimental": ">=0.60.0",
|
|
64
|
-
"@effect/language-service": ">=0.
|
|
73
|
+
"@effect/language-service": ">=0.85.1",
|
|
65
74
|
"@effect/opentelemetry": ">=0.63.0",
|
|
66
75
|
"@effect/platform": ">=0.96.0",
|
|
76
|
+
"@effect/platform-browser": ">=0.76.0",
|
|
67
77
|
"@effect/platform-bun": ">=0.89.0",
|
|
68
78
|
"@effect/platform-node": ">=0.106.0",
|
|
79
|
+
"@effect/platform-node-shared": ">=0.59.0",
|
|
69
80
|
"@effect/printer": ">=0.49.0",
|
|
70
81
|
"@effect/printer-ansi": ">=0.49.0",
|
|
71
82
|
"@effect/rpc": ">=0.75.0",
|
|
72
83
|
"@effect/sql": ">=0.51.0",
|
|
84
|
+
"@effect/sql-pg": ">=0.52.1",
|
|
85
|
+
"@effect/sql-sqlite-bun": ">=0.52.0",
|
|
73
86
|
"@effect/sql-sqlite-node": ">=0.52.0",
|
|
74
87
|
"@effect/typeclass": ">=0.40.0",
|
|
75
88
|
"@effect/workflow": ">=0.18.0",
|
|
76
|
-
"@types/node": "^25.
|
|
89
|
+
"@types/node": "^25.6.0",
|
|
90
|
+
"@types/react": "^19.2.0",
|
|
91
|
+
"@types/react-dom": "^19.2.0",
|
|
77
92
|
"@typescript/native-preview": "^7.0.0-dev.20260124.1",
|
|
78
93
|
effect: ">=3.21.0",
|
|
79
|
-
|
|
94
|
+
react: "^19.2.0",
|
|
95
|
+
"react-dom": "^19.2.0",
|
|
80
96
|
tsx: "^4.21.0",
|
|
81
|
-
typescript: "^
|
|
97
|
+
typescript: "^6.0.0"
|
|
82
98
|
},
|
|
83
99
|
silkOverrides: {
|
|
84
100
|
"@isaacs/brace-expansion": "^5.0.1",
|
|
85
101
|
lodash: "^4.17.23",
|
|
86
102
|
"markdown-it": "^14.1.1",
|
|
87
103
|
minimatch: ">=10.2.3",
|
|
104
|
+
"smol-toml": ">=1.6.1",
|
|
88
105
|
tmp: "^0.2.4"
|
|
89
106
|
},
|
|
90
107
|
silkOnlyBuiltDependencies: [
|
|
@@ -104,9 +121,11 @@ const silkCatalogs = {
|
|
|
104
121
|
"@commitlint/cli",
|
|
105
122
|
"@commitlint/config-conventional",
|
|
106
123
|
"@commitlint/cz-commitlint",
|
|
107
|
-
"@microsoft/api-extractor",
|
|
108
124
|
"@rslib/core",
|
|
125
|
+
"@types/bun",
|
|
109
126
|
"@types/node",
|
|
127
|
+
"@types/react",
|
|
128
|
+
"@types/react-dom",
|
|
110
129
|
"@typescript/native-preview",
|
|
111
130
|
"@vitest/coverage-v8",
|
|
112
131
|
"commitizen",
|