@effected/pnpm-plugin-effect 0.1.1 → 0.3.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 +3 -3
- package/index.js +124 -56
- package/package.json +3 -2
- package/pnpmfile.cjs +168 -67
- package/pnpmfile.mjs +168 -67
- package/tsdoc-metadata.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@effected/pnpm-plugin-effect)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
[](https://nodejs.org/)
|
|
6
|
-
[](https://www.typescriptlang.org/)
|
|
7
7
|
[](https://pnpm.io/)
|
|
8
8
|
|
|
9
9
|
A pnpm [config dependency](https://pnpm.io/config-dependencies) that centralizes Effect-ecosystem versioning through two [pnpm catalogs](https://pnpm.io/catalogs). The `effect` catalog pins every `effect` and `@effect/*` package to one [Effect v4](https://effect.website/blog/releases/effect/40-beta/) release. The `effectPeers` catalog carries the same package set at a computed shared floor — the lowest version safe to advertise as a peer range — so a library you publish does not over-constrain the applications that install it. Install it once and both catalogs are available to every package in your workspace.
|
|
@@ -67,8 +67,8 @@ Libraries want both catalogs: the pinned versions to develop and test against, a
|
|
|
67
67
|
"@effect/ai-openai": "catalog:effect"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"effect": "catalog:
|
|
71
|
-
"@effect/ai-openai": "catalog:
|
|
70
|
+
"effect": "catalog:effect:peers",
|
|
71
|
+
"@effect/ai-openai": "catalog:effect:peers"
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
```
|
package/index.js
CHANGED
|
@@ -1,34 +1,64 @@
|
|
|
1
1
|
//#region \0rolldown-pnpm-config/virtual/catalogs
|
|
2
2
|
const catalogs = /* @__PURE__ */ new Map([
|
|
3
3
|
["effect", /* @__PURE__ */ new Map([
|
|
4
|
-
["@effect/ai-anthropic", "4.0.0-beta.
|
|
5
|
-
["@effect/ai-openai", "4.0.0-beta.
|
|
6
|
-
["@effect/ai-openai-compat", "4.0.0-beta.
|
|
7
|
-
["@effect/ai-openrouter", "4.0.0-beta.
|
|
8
|
-
["@effect/atom-react", "4.0.0-beta.
|
|
9
|
-
["@effect/atom-solid", "4.0.0-beta.
|
|
10
|
-
["@effect/atom-vue", "4.0.0-beta.
|
|
11
|
-
["@effect/openapi-generator", "4.0.0-beta.
|
|
12
|
-
["@effect/opentelemetry", "4.0.0-beta.
|
|
13
|
-
["@effect/platform-browser", "4.0.0-beta.
|
|
14
|
-
["@effect/platform-bun", "4.0.0-beta.
|
|
15
|
-
["@effect/platform-node", "4.0.0-beta.
|
|
16
|
-
["@effect/platform-node-shared", "4.0.0-beta.
|
|
17
|
-
["@effect/sql-clickhouse", "4.0.0-beta.
|
|
18
|
-
["@effect/sql-d1", "4.0.0-beta.
|
|
19
|
-
["@effect/sql-libsql", "4.0.0-beta.
|
|
20
|
-
["@effect/sql-mssql", "4.0.0-beta.
|
|
21
|
-
["@effect/sql-mysql2", "4.0.0-beta.
|
|
22
|
-
["@effect/sql-pg", "4.0.0-beta.
|
|
23
|
-
["@effect/sql-pglite", "4.0.0-beta.
|
|
24
|
-
["@effect/sql-sqlite-bun", "4.0.0-beta.
|
|
25
|
-
["@effect/sql-sqlite-do", "4.0.0-beta.
|
|
26
|
-
["@effect/sql-sqlite-node", "4.0.0-beta.
|
|
27
|
-
["@effect/sql-sqlite-react-native", "4.0.0-beta.
|
|
28
|
-
["@effect/sql-sqlite-wasm", "4.0.0-beta.
|
|
29
|
-
["@effect/tsgo", "
|
|
30
|
-
["@effect/vitest", "4.0.0-beta.
|
|
31
|
-
["effect", "4.0.0-beta.
|
|
4
|
+
["@effect/ai-anthropic", "4.0.0-beta.99"],
|
|
5
|
+
["@effect/ai-openai", "4.0.0-beta.99"],
|
|
6
|
+
["@effect/ai-openai-compat", "4.0.0-beta.99"],
|
|
7
|
+
["@effect/ai-openrouter", "4.0.0-beta.99"],
|
|
8
|
+
["@effect/atom-react", "4.0.0-beta.99"],
|
|
9
|
+
["@effect/atom-solid", "4.0.0-beta.99"],
|
|
10
|
+
["@effect/atom-vue", "4.0.0-beta.99"],
|
|
11
|
+
["@effect/openapi-generator", "4.0.0-beta.99"],
|
|
12
|
+
["@effect/opentelemetry", "4.0.0-beta.99"],
|
|
13
|
+
["@effect/platform-browser", "4.0.0-beta.99"],
|
|
14
|
+
["@effect/platform-bun", "4.0.0-beta.99"],
|
|
15
|
+
["@effect/platform-node", "4.0.0-beta.99"],
|
|
16
|
+
["@effect/platform-node-shared", "4.0.0-beta.99"],
|
|
17
|
+
["@effect/sql-clickhouse", "4.0.0-beta.99"],
|
|
18
|
+
["@effect/sql-d1", "4.0.0-beta.99"],
|
|
19
|
+
["@effect/sql-libsql", "4.0.0-beta.99"],
|
|
20
|
+
["@effect/sql-mssql", "4.0.0-beta.99"],
|
|
21
|
+
["@effect/sql-mysql2", "4.0.0-beta.99"],
|
|
22
|
+
["@effect/sql-pg", "4.0.0-beta.99"],
|
|
23
|
+
["@effect/sql-pglite", "4.0.0-beta.99"],
|
|
24
|
+
["@effect/sql-sqlite-bun", "4.0.0-beta.99"],
|
|
25
|
+
["@effect/sql-sqlite-do", "4.0.0-beta.99"],
|
|
26
|
+
["@effect/sql-sqlite-node", "4.0.0-beta.99"],
|
|
27
|
+
["@effect/sql-sqlite-react-native", "4.0.0-beta.99"],
|
|
28
|
+
["@effect/sql-sqlite-wasm", "4.0.0-beta.99"],
|
|
29
|
+
["@effect/tsgo", "0.24.1"],
|
|
30
|
+
["@effect/vitest", "4.0.0-beta.99"],
|
|
31
|
+
["effect", "4.0.0-beta.99"]
|
|
32
|
+
])],
|
|
33
|
+
["effect:peers", /* @__PURE__ */ new Map([
|
|
34
|
+
["@effect/ai-anthropic", "4.0.0-beta.99"],
|
|
35
|
+
["@effect/ai-openai", "4.0.0-beta.99"],
|
|
36
|
+
["@effect/ai-openai-compat", "4.0.0-beta.99"],
|
|
37
|
+
["@effect/ai-openrouter", "4.0.0-beta.99"],
|
|
38
|
+
["@effect/atom-react", "4.0.0-beta.99"],
|
|
39
|
+
["@effect/atom-solid", "4.0.0-beta.99"],
|
|
40
|
+
["@effect/atom-vue", "4.0.0-beta.99"],
|
|
41
|
+
["@effect/openapi-generator", "4.0.0-beta.99"],
|
|
42
|
+
["@effect/opentelemetry", "4.0.0-beta.99"],
|
|
43
|
+
["@effect/platform-browser", "4.0.0-beta.99"],
|
|
44
|
+
["@effect/platform-bun", "4.0.0-beta.99"],
|
|
45
|
+
["@effect/platform-node", "4.0.0-beta.99"],
|
|
46
|
+
["@effect/platform-node-shared", "4.0.0-beta.99"],
|
|
47
|
+
["@effect/sql-clickhouse", "4.0.0-beta.99"],
|
|
48
|
+
["@effect/sql-d1", "4.0.0-beta.99"],
|
|
49
|
+
["@effect/sql-libsql", "4.0.0-beta.99"],
|
|
50
|
+
["@effect/sql-mssql", "4.0.0-beta.99"],
|
|
51
|
+
["@effect/sql-mysql2", "4.0.0-beta.99"],
|
|
52
|
+
["@effect/sql-pg", "4.0.0-beta.99"],
|
|
53
|
+
["@effect/sql-pglite", "4.0.0-beta.99"],
|
|
54
|
+
["@effect/sql-sqlite-bun", "4.0.0-beta.99"],
|
|
55
|
+
["@effect/sql-sqlite-do", "4.0.0-beta.99"],
|
|
56
|
+
["@effect/sql-sqlite-node", "4.0.0-beta.99"],
|
|
57
|
+
["@effect/sql-sqlite-react-native", "4.0.0-beta.99"],
|
|
58
|
+
["@effect/sql-sqlite-wasm", "4.0.0-beta.99"],
|
|
59
|
+
["@effect/tsgo", "0.24.1"],
|
|
60
|
+
["@effect/vitest", "4.0.0-beta.99"],
|
|
61
|
+
["effect", "4.0.0-beta.99"]
|
|
32
62
|
])],
|
|
33
63
|
["effect3", /* @__PURE__ */ new Map([
|
|
34
64
|
["@effect/ai", "^0.36.0"],
|
|
@@ -68,6 +98,44 @@ const catalogs = /* @__PURE__ */ new Map([
|
|
|
68
98
|
["@effect/workflow", "^0.18.2"],
|
|
69
99
|
["effect", "^3.21.4"]
|
|
70
100
|
])],
|
|
101
|
+
["effect3:peers", /* @__PURE__ */ new Map([
|
|
102
|
+
["@effect/ai", "^0.36.0"],
|
|
103
|
+
["@effect/ai-amazon-bedrock", "^0.16.1"],
|
|
104
|
+
["@effect/ai-anthropic", "^0.26.0"],
|
|
105
|
+
["@effect/ai-google", "^0.15.0"],
|
|
106
|
+
["@effect/ai-openai", "^0.40.1"],
|
|
107
|
+
["@effect/cli", "^0.75.2"],
|
|
108
|
+
["@effect/cluster", "^0.59.0"],
|
|
109
|
+
["@effect/experimental", "^0.60.0"],
|
|
110
|
+
["@effect/language-service", "^0.86.6"],
|
|
111
|
+
["@effect/opentelemetry", "^0.63.0"],
|
|
112
|
+
["@effect/platform", "^0.96.0"],
|
|
113
|
+
["@effect/platform-browser", "^0.76.0"],
|
|
114
|
+
["@effect/platform-bun", "^0.90.0"],
|
|
115
|
+
["@effect/platform-node", "^0.107.0"],
|
|
116
|
+
["@effect/platform-node-shared", "^0.60.0"],
|
|
117
|
+
["@effect/printer", "^0.49.0"],
|
|
118
|
+
["@effect/printer-ansi", "^0.49.0"],
|
|
119
|
+
["@effect/rpc", "^0.75.1"],
|
|
120
|
+
["@effect/sql", "^0.51.0"],
|
|
121
|
+
["@effect/sql-clickhouse", "^0.49.0"],
|
|
122
|
+
["@effect/sql-d1", "^0.49.0"],
|
|
123
|
+
["@effect/sql-drizzle", "^0.50.0"],
|
|
124
|
+
["@effect/sql-kysely", "^0.47.0"],
|
|
125
|
+
["@effect/sql-libsql", "^0.41.0"],
|
|
126
|
+
["@effect/sql-mssql", "^0.52.0"],
|
|
127
|
+
["@effect/sql-mysql2", "^0.52.0"],
|
|
128
|
+
["@effect/sql-pg", "^0.52.1"],
|
|
129
|
+
["@effect/sql-sqlite-bun", "^0.52.0"],
|
|
130
|
+
["@effect/sql-sqlite-do", "^0.29.0"],
|
|
131
|
+
["@effect/sql-sqlite-node", "^0.52.0"],
|
|
132
|
+
["@effect/sql-sqlite-react-native", "^0.54.0"],
|
|
133
|
+
["@effect/sql-sqlite-wasm", "^0.52.0"],
|
|
134
|
+
["@effect/typeclass", "^0.40.0"],
|
|
135
|
+
["@effect/vitest", "^0.29.0"],
|
|
136
|
+
["@effect/workflow", "^0.18.2"],
|
|
137
|
+
["effect", "^3.21.0"]
|
|
138
|
+
])],
|
|
71
139
|
["effect3Peers", /* @__PURE__ */ new Map([
|
|
72
140
|
["@effect/ai", "^0.36.0"],
|
|
73
141
|
["@effect/ai-amazon-bedrock", "^0.16.1"],
|
|
@@ -107,34 +175,34 @@ const catalogs = /* @__PURE__ */ new Map([
|
|
|
107
175
|
["effect", "^3.21.0"]
|
|
108
176
|
])],
|
|
109
177
|
["effectPeers", /* @__PURE__ */ new Map([
|
|
110
|
-
["@effect/ai-anthropic", "4.0.0-beta.
|
|
111
|
-
["@effect/ai-openai", "4.0.0-beta.
|
|
112
|
-
["@effect/ai-openai-compat", "4.0.0-beta.
|
|
113
|
-
["@effect/ai-openrouter", "4.0.0-beta.
|
|
114
|
-
["@effect/atom-react", "4.0.0-beta.
|
|
115
|
-
["@effect/atom-solid", "4.0.0-beta.
|
|
116
|
-
["@effect/atom-vue", "4.0.0-beta.
|
|
117
|
-
["@effect/openapi-generator", "4.0.0-beta.
|
|
118
|
-
["@effect/opentelemetry", "4.0.0-beta.
|
|
119
|
-
["@effect/platform-browser", "4.0.0-beta.
|
|
120
|
-
["@effect/platform-bun", "4.0.0-beta.
|
|
121
|
-
["@effect/platform-node", "4.0.0-beta.
|
|
122
|
-
["@effect/platform-node-shared", "4.0.0-beta.
|
|
123
|
-
["@effect/sql-clickhouse", "4.0.0-beta.
|
|
124
|
-
["@effect/sql-d1", "4.0.0-beta.
|
|
125
|
-
["@effect/sql-libsql", "4.0.0-beta.
|
|
126
|
-
["@effect/sql-mssql", "4.0.0-beta.
|
|
127
|
-
["@effect/sql-mysql2", "4.0.0-beta.
|
|
128
|
-
["@effect/sql-pg", "4.0.0-beta.
|
|
129
|
-
["@effect/sql-pglite", "4.0.0-beta.
|
|
130
|
-
["@effect/sql-sqlite-bun", "4.0.0-beta.
|
|
131
|
-
["@effect/sql-sqlite-do", "4.0.0-beta.
|
|
132
|
-
["@effect/sql-sqlite-node", "4.0.0-beta.
|
|
133
|
-
["@effect/sql-sqlite-react-native", "4.0.0-beta.
|
|
134
|
-
["@effect/sql-sqlite-wasm", "4.0.0-beta.
|
|
135
|
-
["@effect/tsgo", "
|
|
136
|
-
["@effect/vitest", "4.0.0-beta.
|
|
137
|
-
["effect", "4.0.0-beta.
|
|
178
|
+
["@effect/ai-anthropic", "4.0.0-beta.99"],
|
|
179
|
+
["@effect/ai-openai", "4.0.0-beta.99"],
|
|
180
|
+
["@effect/ai-openai-compat", "4.0.0-beta.99"],
|
|
181
|
+
["@effect/ai-openrouter", "4.0.0-beta.99"],
|
|
182
|
+
["@effect/atom-react", "4.0.0-beta.99"],
|
|
183
|
+
["@effect/atom-solid", "4.0.0-beta.99"],
|
|
184
|
+
["@effect/atom-vue", "4.0.0-beta.99"],
|
|
185
|
+
["@effect/openapi-generator", "4.0.0-beta.99"],
|
|
186
|
+
["@effect/opentelemetry", "4.0.0-beta.99"],
|
|
187
|
+
["@effect/platform-browser", "4.0.0-beta.99"],
|
|
188
|
+
["@effect/platform-bun", "4.0.0-beta.99"],
|
|
189
|
+
["@effect/platform-node", "4.0.0-beta.99"],
|
|
190
|
+
["@effect/platform-node-shared", "4.0.0-beta.99"],
|
|
191
|
+
["@effect/sql-clickhouse", "4.0.0-beta.99"],
|
|
192
|
+
["@effect/sql-d1", "4.0.0-beta.99"],
|
|
193
|
+
["@effect/sql-libsql", "4.0.0-beta.99"],
|
|
194
|
+
["@effect/sql-mssql", "4.0.0-beta.99"],
|
|
195
|
+
["@effect/sql-mysql2", "4.0.0-beta.99"],
|
|
196
|
+
["@effect/sql-pg", "4.0.0-beta.99"],
|
|
197
|
+
["@effect/sql-pglite", "4.0.0-beta.99"],
|
|
198
|
+
["@effect/sql-sqlite-bun", "4.0.0-beta.99"],
|
|
199
|
+
["@effect/sql-sqlite-do", "4.0.0-beta.99"],
|
|
200
|
+
["@effect/sql-sqlite-node", "4.0.0-beta.99"],
|
|
201
|
+
["@effect/sql-sqlite-react-native", "4.0.0-beta.99"],
|
|
202
|
+
["@effect/sql-sqlite-wasm", "4.0.0-beta.99"],
|
|
203
|
+
["@effect/tsgo", "0.24.1"],
|
|
204
|
+
["@effect/vitest", "4.0.0-beta.99"],
|
|
205
|
+
["effect", "4.0.0-beta.99"]
|
|
138
206
|
])]
|
|
139
207
|
]);
|
|
140
208
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effected/pnpm-plugin-effect",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "pnpm config dependency for centralized catalog management across the Effected ecosystem.",
|
|
6
6
|
"keywords": [
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"exports": {
|
|
31
31
|
".": {
|
|
32
32
|
"types": "./index.d.ts",
|
|
33
|
-
"import": "./index.js"
|
|
33
|
+
"import": "./index.js",
|
|
34
|
+
"default": "./index.js"
|
|
34
35
|
},
|
|
35
36
|
"./package.json": "./package.json"
|
|
36
37
|
},
|
package/pnpmfile.cjs
CHANGED
|
@@ -2,7 +2,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
2
2
|
let node_fs = require("node:fs");
|
|
3
3
|
let node_path = require("node:path");
|
|
4
4
|
|
|
5
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
5
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/ctx.js
|
|
6
6
|
/**
|
|
7
7
|
* Resolve the consuming repo's root package name. Prefers pnpm's
|
|
8
8
|
* `rootProjectManifest.name`, falling back to reading `package.json` from the
|
|
@@ -37,7 +37,7 @@ function excludeByRepo(merged, ctx, byRepo) {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
//#endregion
|
|
40
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
40
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/enforcement.js
|
|
41
41
|
/**
|
|
42
42
|
* Thrown when an `error`-enforced field diverges. A zero-dependency plain
|
|
43
43
|
* `Error` subclass (NOT an Effect type) so it survives in the bundled pnpmfile.
|
|
@@ -72,7 +72,7 @@ function applyEnforcement(field, result, enforcement) {
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
//#endregion
|
|
75
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
75
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/arrays.js
|
|
76
76
|
function unionSort(managed, local) {
|
|
77
77
|
const set = new Set(managed);
|
|
78
78
|
for (const item of local ?? []) set.add(item);
|
|
@@ -108,7 +108,7 @@ const arrayRecordUnion = (base, local) => {
|
|
|
108
108
|
};
|
|
109
109
|
|
|
110
110
|
//#endregion
|
|
111
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
111
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/catalogs.js
|
|
112
112
|
/**
|
|
113
113
|
* Merge each named catalog; child wins per package. Emits override divergences
|
|
114
114
|
* when a local version differs from the managed one.
|
|
@@ -143,7 +143,7 @@ const catalogs = (base, local) => {
|
|
|
143
143
|
};
|
|
144
144
|
|
|
145
145
|
//#endregion
|
|
146
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
146
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/maps.js
|
|
147
147
|
/**
|
|
148
148
|
* `{...managed, ...child}` — child wins per key. Quiet. Merges two maps,
|
|
149
149
|
* preferring child values.
|
|
@@ -188,7 +188,7 @@ const allowBuilds = (base, local) => {
|
|
|
188
188
|
};
|
|
189
189
|
|
|
190
190
|
//#endregion
|
|
191
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
191
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/overrides.js
|
|
192
192
|
function mergeMapDetect(prefix, managed, child) {
|
|
193
193
|
const merged = { ...managed };
|
|
194
194
|
const divergences = [];
|
|
@@ -244,7 +244,7 @@ const peerDependencyRules = (base, local) => {
|
|
|
244
244
|
};
|
|
245
245
|
|
|
246
246
|
//#endregion
|
|
247
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
247
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/scalar.js
|
|
248
248
|
/**
|
|
249
249
|
* `child ?? base` — quiet (no divergences). Prefer local, fall back to managed.
|
|
250
250
|
*
|
|
@@ -300,7 +300,7 @@ const securityMin = (base, local) => {
|
|
|
300
300
|
};
|
|
301
301
|
|
|
302
302
|
//#endregion
|
|
303
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
303
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/table.js
|
|
304
304
|
/**
|
|
305
305
|
* Built-in strategies keyed by manifest name.
|
|
306
306
|
*
|
|
@@ -320,7 +320,7 @@ const STRATEGY_TABLE = {
|
|
|
320
320
|
};
|
|
321
321
|
|
|
322
322
|
//#endregion
|
|
323
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
323
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/warnings.js
|
|
324
324
|
const WARNING_BOX_WIDTH = 75;
|
|
325
325
|
function pad(line) {
|
|
326
326
|
return `│${line}${" ".repeat(Math.max(0, WARNING_BOX_WIDTH - line.length - 2))}│`;
|
|
@@ -380,7 +380,7 @@ function formatSecurityWarning(divergences, name) {
|
|
|
380
380
|
}
|
|
381
381
|
|
|
382
382
|
//#endregion
|
|
383
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
383
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime.js
|
|
384
384
|
/**
|
|
385
385
|
* Build the pnpm hooks from frozen base data + a field→strategy manifest.
|
|
386
386
|
* Zero dependencies — bundled verbatim into the shipped pnpmfile.
|
|
@@ -432,34 +432,64 @@ function createHooks(base, manifest, name) {
|
|
|
432
432
|
const hooks = createHooks({
|
|
433
433
|
"catalogs": {
|
|
434
434
|
"effect": {
|
|
435
|
-
"@effect/ai-anthropic": "4.0.0-beta.
|
|
436
|
-
"@effect/ai-openai": "4.0.0-beta.
|
|
437
|
-
"@effect/ai-openai-compat": "4.0.0-beta.
|
|
438
|
-
"@effect/ai-openrouter": "4.0.0-beta.
|
|
439
|
-
"@effect/atom-react": "4.0.0-beta.
|
|
440
|
-
"@effect/atom-solid": "4.0.0-beta.
|
|
441
|
-
"@effect/atom-vue": "4.0.0-beta.
|
|
442
|
-
"@effect/openapi-generator": "4.0.0-beta.
|
|
443
|
-
"@effect/opentelemetry": "4.0.0-beta.
|
|
444
|
-
"@effect/platform-browser": "4.0.0-beta.
|
|
445
|
-
"@effect/platform-bun": "4.0.0-beta.
|
|
446
|
-
"@effect/platform-node": "4.0.0-beta.
|
|
447
|
-
"@effect/platform-node-shared": "4.0.0-beta.
|
|
448
|
-
"@effect/sql-clickhouse": "4.0.0-beta.
|
|
449
|
-
"@effect/sql-d1": "4.0.0-beta.
|
|
450
|
-
"@effect/sql-libsql": "4.0.0-beta.
|
|
451
|
-
"@effect/sql-mssql": "4.0.0-beta.
|
|
452
|
-
"@effect/sql-mysql2": "4.0.0-beta.
|
|
453
|
-
"@effect/sql-pg": "4.0.0-beta.
|
|
454
|
-
"@effect/sql-pglite": "4.0.0-beta.
|
|
455
|
-
"@effect/sql-sqlite-bun": "4.0.0-beta.
|
|
456
|
-
"@effect/sql-sqlite-do": "4.0.0-beta.
|
|
457
|
-
"@effect/sql-sqlite-node": "4.0.0-beta.
|
|
458
|
-
"@effect/sql-sqlite-react-native": "4.0.0-beta.
|
|
459
|
-
"@effect/sql-sqlite-wasm": "4.0.0-beta.
|
|
460
|
-
"@effect/tsgo": "
|
|
461
|
-
"@effect/vitest": "4.0.0-beta.
|
|
462
|
-
"effect": "4.0.0-beta.
|
|
435
|
+
"@effect/ai-anthropic": "4.0.0-beta.99",
|
|
436
|
+
"@effect/ai-openai": "4.0.0-beta.99",
|
|
437
|
+
"@effect/ai-openai-compat": "4.0.0-beta.99",
|
|
438
|
+
"@effect/ai-openrouter": "4.0.0-beta.99",
|
|
439
|
+
"@effect/atom-react": "4.0.0-beta.99",
|
|
440
|
+
"@effect/atom-solid": "4.0.0-beta.99",
|
|
441
|
+
"@effect/atom-vue": "4.0.0-beta.99",
|
|
442
|
+
"@effect/openapi-generator": "4.0.0-beta.99",
|
|
443
|
+
"@effect/opentelemetry": "4.0.0-beta.99",
|
|
444
|
+
"@effect/platform-browser": "4.0.0-beta.99",
|
|
445
|
+
"@effect/platform-bun": "4.0.0-beta.99",
|
|
446
|
+
"@effect/platform-node": "4.0.0-beta.99",
|
|
447
|
+
"@effect/platform-node-shared": "4.0.0-beta.99",
|
|
448
|
+
"@effect/sql-clickhouse": "4.0.0-beta.99",
|
|
449
|
+
"@effect/sql-d1": "4.0.0-beta.99",
|
|
450
|
+
"@effect/sql-libsql": "4.0.0-beta.99",
|
|
451
|
+
"@effect/sql-mssql": "4.0.0-beta.99",
|
|
452
|
+
"@effect/sql-mysql2": "4.0.0-beta.99",
|
|
453
|
+
"@effect/sql-pg": "4.0.0-beta.99",
|
|
454
|
+
"@effect/sql-pglite": "4.0.0-beta.99",
|
|
455
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.99",
|
|
456
|
+
"@effect/sql-sqlite-do": "4.0.0-beta.99",
|
|
457
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.99",
|
|
458
|
+
"@effect/sql-sqlite-react-native": "4.0.0-beta.99",
|
|
459
|
+
"@effect/sql-sqlite-wasm": "4.0.0-beta.99",
|
|
460
|
+
"@effect/tsgo": "0.24.1",
|
|
461
|
+
"@effect/vitest": "4.0.0-beta.99",
|
|
462
|
+
"effect": "4.0.0-beta.99"
|
|
463
|
+
},
|
|
464
|
+
"effect:peers": {
|
|
465
|
+
"@effect/ai-anthropic": "4.0.0-beta.99",
|
|
466
|
+
"@effect/ai-openai": "4.0.0-beta.99",
|
|
467
|
+
"@effect/ai-openai-compat": "4.0.0-beta.99",
|
|
468
|
+
"@effect/ai-openrouter": "4.0.0-beta.99",
|
|
469
|
+
"@effect/atom-react": "4.0.0-beta.99",
|
|
470
|
+
"@effect/atom-solid": "4.0.0-beta.99",
|
|
471
|
+
"@effect/atom-vue": "4.0.0-beta.99",
|
|
472
|
+
"@effect/openapi-generator": "4.0.0-beta.99",
|
|
473
|
+
"@effect/opentelemetry": "4.0.0-beta.99",
|
|
474
|
+
"@effect/platform-browser": "4.0.0-beta.99",
|
|
475
|
+
"@effect/platform-bun": "4.0.0-beta.99",
|
|
476
|
+
"@effect/platform-node": "4.0.0-beta.99",
|
|
477
|
+
"@effect/platform-node-shared": "4.0.0-beta.99",
|
|
478
|
+
"@effect/sql-clickhouse": "4.0.0-beta.99",
|
|
479
|
+
"@effect/sql-d1": "4.0.0-beta.99",
|
|
480
|
+
"@effect/sql-libsql": "4.0.0-beta.99",
|
|
481
|
+
"@effect/sql-mssql": "4.0.0-beta.99",
|
|
482
|
+
"@effect/sql-mysql2": "4.0.0-beta.99",
|
|
483
|
+
"@effect/sql-pg": "4.0.0-beta.99",
|
|
484
|
+
"@effect/sql-pglite": "4.0.0-beta.99",
|
|
485
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.99",
|
|
486
|
+
"@effect/sql-sqlite-do": "4.0.0-beta.99",
|
|
487
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.99",
|
|
488
|
+
"@effect/sql-sqlite-react-native": "4.0.0-beta.99",
|
|
489
|
+
"@effect/sql-sqlite-wasm": "4.0.0-beta.99",
|
|
490
|
+
"@effect/tsgo": "0.24.1",
|
|
491
|
+
"@effect/vitest": "4.0.0-beta.99",
|
|
492
|
+
"effect": "4.0.0-beta.99"
|
|
463
493
|
},
|
|
464
494
|
"effect3": {
|
|
465
495
|
"@effect/ai": "^0.36.0",
|
|
@@ -499,6 +529,44 @@ const hooks = createHooks({
|
|
|
499
529
|
"@effect/workflow": "^0.18.2",
|
|
500
530
|
"effect": "^3.21.4"
|
|
501
531
|
},
|
|
532
|
+
"effect3:peers": {
|
|
533
|
+
"@effect/ai": "^0.36.0",
|
|
534
|
+
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
535
|
+
"@effect/ai-anthropic": "^0.26.0",
|
|
536
|
+
"@effect/ai-google": "^0.15.0",
|
|
537
|
+
"@effect/ai-openai": "^0.40.1",
|
|
538
|
+
"@effect/cli": "^0.75.2",
|
|
539
|
+
"@effect/cluster": "^0.59.0",
|
|
540
|
+
"@effect/experimental": "^0.60.0",
|
|
541
|
+
"@effect/language-service": "^0.86.6",
|
|
542
|
+
"@effect/opentelemetry": "^0.63.0",
|
|
543
|
+
"@effect/platform": "^0.96.0",
|
|
544
|
+
"@effect/platform-browser": "^0.76.0",
|
|
545
|
+
"@effect/platform-bun": "^0.90.0",
|
|
546
|
+
"@effect/platform-node": "^0.107.0",
|
|
547
|
+
"@effect/platform-node-shared": "^0.60.0",
|
|
548
|
+
"@effect/printer": "^0.49.0",
|
|
549
|
+
"@effect/printer-ansi": "^0.49.0",
|
|
550
|
+
"@effect/rpc": "^0.75.1",
|
|
551
|
+
"@effect/sql": "^0.51.0",
|
|
552
|
+
"@effect/sql-clickhouse": "^0.49.0",
|
|
553
|
+
"@effect/sql-d1": "^0.49.0",
|
|
554
|
+
"@effect/sql-drizzle": "^0.50.0",
|
|
555
|
+
"@effect/sql-kysely": "^0.47.0",
|
|
556
|
+
"@effect/sql-libsql": "^0.41.0",
|
|
557
|
+
"@effect/sql-mssql": "^0.52.0",
|
|
558
|
+
"@effect/sql-mysql2": "^0.52.0",
|
|
559
|
+
"@effect/sql-pg": "^0.52.1",
|
|
560
|
+
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
561
|
+
"@effect/sql-sqlite-do": "^0.29.0",
|
|
562
|
+
"@effect/sql-sqlite-node": "^0.52.0",
|
|
563
|
+
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
564
|
+
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
565
|
+
"@effect/typeclass": "^0.40.0",
|
|
566
|
+
"@effect/vitest": "^0.29.0",
|
|
567
|
+
"@effect/workflow": "^0.18.2",
|
|
568
|
+
"effect": "^3.21.0"
|
|
569
|
+
},
|
|
502
570
|
"effect3Peers": {
|
|
503
571
|
"@effect/ai": "^0.36.0",
|
|
504
572
|
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
@@ -538,37 +606,66 @@ const hooks = createHooks({
|
|
|
538
606
|
"effect": "^3.21.0"
|
|
539
607
|
},
|
|
540
608
|
"effectPeers": {
|
|
541
|
-
"@effect/ai-anthropic": "4.0.0-beta.
|
|
542
|
-
"@effect/ai-openai": "4.0.0-beta.
|
|
543
|
-
"@effect/ai-openai-compat": "4.0.0-beta.
|
|
544
|
-
"@effect/ai-openrouter": "4.0.0-beta.
|
|
545
|
-
"@effect/atom-react": "4.0.0-beta.
|
|
546
|
-
"@effect/atom-solid": "4.0.0-beta.
|
|
547
|
-
"@effect/atom-vue": "4.0.0-beta.
|
|
548
|
-
"@effect/openapi-generator": "4.0.0-beta.
|
|
549
|
-
"@effect/opentelemetry": "4.0.0-beta.
|
|
550
|
-
"@effect/platform-browser": "4.0.0-beta.
|
|
551
|
-
"@effect/platform-bun": "4.0.0-beta.
|
|
552
|
-
"@effect/platform-node": "4.0.0-beta.
|
|
553
|
-
"@effect/platform-node-shared": "4.0.0-beta.
|
|
554
|
-
"@effect/sql-clickhouse": "4.0.0-beta.
|
|
555
|
-
"@effect/sql-d1": "4.0.0-beta.
|
|
556
|
-
"@effect/sql-libsql": "4.0.0-beta.
|
|
557
|
-
"@effect/sql-mssql": "4.0.0-beta.
|
|
558
|
-
"@effect/sql-mysql2": "4.0.0-beta.
|
|
559
|
-
"@effect/sql-pg": "4.0.0-beta.
|
|
560
|
-
"@effect/sql-pglite": "4.0.0-beta.
|
|
561
|
-
"@effect/sql-sqlite-bun": "4.0.0-beta.
|
|
562
|
-
"@effect/sql-sqlite-do": "4.0.0-beta.
|
|
563
|
-
"@effect/sql-sqlite-node": "4.0.0-beta.
|
|
564
|
-
"@effect/sql-sqlite-react-native": "4.0.0-beta.
|
|
565
|
-
"@effect/sql-sqlite-wasm": "4.0.0-beta.
|
|
566
|
-
"@effect/tsgo": "
|
|
567
|
-
"@effect/vitest": "4.0.0-beta.
|
|
568
|
-
"effect": "4.0.0-beta.
|
|
609
|
+
"@effect/ai-anthropic": "4.0.0-beta.99",
|
|
610
|
+
"@effect/ai-openai": "4.0.0-beta.99",
|
|
611
|
+
"@effect/ai-openai-compat": "4.0.0-beta.99",
|
|
612
|
+
"@effect/ai-openrouter": "4.0.0-beta.99",
|
|
613
|
+
"@effect/atom-react": "4.0.0-beta.99",
|
|
614
|
+
"@effect/atom-solid": "4.0.0-beta.99",
|
|
615
|
+
"@effect/atom-vue": "4.0.0-beta.99",
|
|
616
|
+
"@effect/openapi-generator": "4.0.0-beta.99",
|
|
617
|
+
"@effect/opentelemetry": "4.0.0-beta.99",
|
|
618
|
+
"@effect/platform-browser": "4.0.0-beta.99",
|
|
619
|
+
"@effect/platform-bun": "4.0.0-beta.99",
|
|
620
|
+
"@effect/platform-node": "4.0.0-beta.99",
|
|
621
|
+
"@effect/platform-node-shared": "4.0.0-beta.99",
|
|
622
|
+
"@effect/sql-clickhouse": "4.0.0-beta.99",
|
|
623
|
+
"@effect/sql-d1": "4.0.0-beta.99",
|
|
624
|
+
"@effect/sql-libsql": "4.0.0-beta.99",
|
|
625
|
+
"@effect/sql-mssql": "4.0.0-beta.99",
|
|
626
|
+
"@effect/sql-mysql2": "4.0.0-beta.99",
|
|
627
|
+
"@effect/sql-pg": "4.0.0-beta.99",
|
|
628
|
+
"@effect/sql-pglite": "4.0.0-beta.99",
|
|
629
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.99",
|
|
630
|
+
"@effect/sql-sqlite-do": "4.0.0-beta.99",
|
|
631
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.99",
|
|
632
|
+
"@effect/sql-sqlite-react-native": "4.0.0-beta.99",
|
|
633
|
+
"@effect/sql-sqlite-wasm": "4.0.0-beta.99",
|
|
634
|
+
"@effect/tsgo": "0.24.1",
|
|
635
|
+
"@effect/vitest": "4.0.0-beta.99",
|
|
636
|
+
"effect": "4.0.0-beta.99"
|
|
569
637
|
}
|
|
570
638
|
},
|
|
571
|
-
"minimumReleaseAgeExclude": ["@effect/tsgo-*"]
|
|
639
|
+
"minimumReleaseAgeExclude": ["@effect/tsgo-*"],
|
|
640
|
+
"peerDependencyRules": { "allowedVersions": {
|
|
641
|
+
"@effect/ai-anthropic@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
642
|
+
"@effect/ai-openai-compat@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
643
|
+
"@effect/ai-openai@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
644
|
+
"@effect/ai-openrouter@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
645
|
+
"@effect/atom-react@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
646
|
+
"@effect/atom-solid@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
647
|
+
"@effect/atom-vue@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
648
|
+
"@effect/openapi-generator@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
649
|
+
"@effect/opentelemetry@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
650
|
+
"@effect/platform-browser@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
651
|
+
"@effect/platform-bun@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
652
|
+
"@effect/platform-node-shared@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
653
|
+
"@effect/platform-node@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
654
|
+
"@effect/sql-clickhouse@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
655
|
+
"@effect/sql-d1@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
656
|
+
"@effect/sql-libsql@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
657
|
+
"@effect/sql-mssql@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
658
|
+
"@effect/sql-mysql2@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
659
|
+
"@effect/sql-pg@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
660
|
+
"@effect/sql-pglite@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
661
|
+
"@effect/sql-sqlite-bun@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
662
|
+
"@effect/sql-sqlite-do@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
663
|
+
"@effect/sql-sqlite-node@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
664
|
+
"@effect/sql-sqlite-react-native@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
665
|
+
"@effect/sql-sqlite-wasm@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
666
|
+
"@effect/tsgo@0.24.1>effect": "4.0.0-beta.99",
|
|
667
|
+
"@effect/vitest@4.0.0-beta.99>effect": "4.0.0-beta.99"
|
|
668
|
+
} }
|
|
572
669
|
}, {
|
|
573
670
|
"catalogs": {
|
|
574
671
|
"enforcement": "warn",
|
|
@@ -577,6 +674,10 @@ const hooks = createHooks({
|
|
|
577
674
|
"minimumReleaseAgeExclude": {
|
|
578
675
|
"enforcement": "absent",
|
|
579
676
|
"strategy": "arrayUnion"
|
|
677
|
+
},
|
|
678
|
+
"peerDependencyRules": {
|
|
679
|
+
"enforcement": "warn",
|
|
680
|
+
"strategy": "peerDependencyRules"
|
|
580
681
|
}
|
|
581
682
|
}, "@effected/pnpm-plugin-effect");
|
|
582
683
|
|
package/pnpmfile.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { readFileSync } from "node:fs";
|
|
2
2
|
import { join } from "node:path";
|
|
3
3
|
|
|
4
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
4
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/ctx.js
|
|
5
5
|
/**
|
|
6
6
|
* Resolve the consuming repo's root package name. Prefers pnpm's
|
|
7
7
|
* `rootProjectManifest.name`, falling back to reading `package.json` from the
|
|
@@ -36,7 +36,7 @@ function excludeByRepo(merged, ctx, byRepo) {
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
//#endregion
|
|
39
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
39
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/enforcement.js
|
|
40
40
|
/**
|
|
41
41
|
* Thrown when an `error`-enforced field diverges. A zero-dependency plain
|
|
42
42
|
* `Error` subclass (NOT an Effect type) so it survives in the bundled pnpmfile.
|
|
@@ -71,7 +71,7 @@ function applyEnforcement(field, result, enforcement) {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
//#endregion
|
|
74
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
74
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/arrays.js
|
|
75
75
|
function unionSort(managed, local) {
|
|
76
76
|
const set = new Set(managed);
|
|
77
77
|
for (const item of local ?? []) set.add(item);
|
|
@@ -107,7 +107,7 @@ const arrayRecordUnion = (base, local) => {
|
|
|
107
107
|
};
|
|
108
108
|
|
|
109
109
|
//#endregion
|
|
110
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
110
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/catalogs.js
|
|
111
111
|
/**
|
|
112
112
|
* Merge each named catalog; child wins per package. Emits override divergences
|
|
113
113
|
* when a local version differs from the managed one.
|
|
@@ -142,7 +142,7 @@ const catalogs = (base, local) => {
|
|
|
142
142
|
};
|
|
143
143
|
|
|
144
144
|
//#endregion
|
|
145
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
145
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/maps.js
|
|
146
146
|
/**
|
|
147
147
|
* `{...managed, ...child}` — child wins per key. Quiet. Merges two maps,
|
|
148
148
|
* preferring child values.
|
|
@@ -187,7 +187,7 @@ const allowBuilds = (base, local) => {
|
|
|
187
187
|
};
|
|
188
188
|
|
|
189
189
|
//#endregion
|
|
190
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
190
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/overrides.js
|
|
191
191
|
function mergeMapDetect(prefix, managed, child) {
|
|
192
192
|
const merged = { ...managed };
|
|
193
193
|
const divergences = [];
|
|
@@ -243,7 +243,7 @@ const peerDependencyRules = (base, local) => {
|
|
|
243
243
|
};
|
|
244
244
|
|
|
245
245
|
//#endregion
|
|
246
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
246
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/scalar.js
|
|
247
247
|
/**
|
|
248
248
|
* `child ?? base` — quiet (no divergences). Prefer local, fall back to managed.
|
|
249
249
|
*
|
|
@@ -299,7 +299,7 @@ const securityMin = (base, local) => {
|
|
|
299
299
|
};
|
|
300
300
|
|
|
301
301
|
//#endregion
|
|
302
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
302
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/strategies/table.js
|
|
303
303
|
/**
|
|
304
304
|
* Built-in strategies keyed by manifest name.
|
|
305
305
|
*
|
|
@@ -319,7 +319,7 @@ const STRATEGY_TABLE = {
|
|
|
319
319
|
};
|
|
320
320
|
|
|
321
321
|
//#endregion
|
|
322
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
322
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime/warnings.js
|
|
323
323
|
const WARNING_BOX_WIDTH = 75;
|
|
324
324
|
function pad(line) {
|
|
325
325
|
return `│${line}${" ".repeat(Math.max(0, WARNING_BOX_WIDTH - line.length - 2))}│`;
|
|
@@ -379,7 +379,7 @@ function formatSecurityWarning(divergences, name) {
|
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
//#endregion
|
|
382
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
382
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.5.0_@types+react@19.2.17_ioredis@5.11.1_supports-color@9.4.0__rolldown@1.2.0/node_modules/rolldown-pnpm-config/runtime.js
|
|
383
383
|
/**
|
|
384
384
|
* Build the pnpm hooks from frozen base data + a field→strategy manifest.
|
|
385
385
|
* Zero dependencies — bundled verbatim into the shipped pnpmfile.
|
|
@@ -431,34 +431,64 @@ function createHooks(base, manifest, name) {
|
|
|
431
431
|
const hooks = createHooks({
|
|
432
432
|
"catalogs": {
|
|
433
433
|
"effect": {
|
|
434
|
-
"@effect/ai-anthropic": "4.0.0-beta.
|
|
435
|
-
"@effect/ai-openai": "4.0.0-beta.
|
|
436
|
-
"@effect/ai-openai-compat": "4.0.0-beta.
|
|
437
|
-
"@effect/ai-openrouter": "4.0.0-beta.
|
|
438
|
-
"@effect/atom-react": "4.0.0-beta.
|
|
439
|
-
"@effect/atom-solid": "4.0.0-beta.
|
|
440
|
-
"@effect/atom-vue": "4.0.0-beta.
|
|
441
|
-
"@effect/openapi-generator": "4.0.0-beta.
|
|
442
|
-
"@effect/opentelemetry": "4.0.0-beta.
|
|
443
|
-
"@effect/platform-browser": "4.0.0-beta.
|
|
444
|
-
"@effect/platform-bun": "4.0.0-beta.
|
|
445
|
-
"@effect/platform-node": "4.0.0-beta.
|
|
446
|
-
"@effect/platform-node-shared": "4.0.0-beta.
|
|
447
|
-
"@effect/sql-clickhouse": "4.0.0-beta.
|
|
448
|
-
"@effect/sql-d1": "4.0.0-beta.
|
|
449
|
-
"@effect/sql-libsql": "4.0.0-beta.
|
|
450
|
-
"@effect/sql-mssql": "4.0.0-beta.
|
|
451
|
-
"@effect/sql-mysql2": "4.0.0-beta.
|
|
452
|
-
"@effect/sql-pg": "4.0.0-beta.
|
|
453
|
-
"@effect/sql-pglite": "4.0.0-beta.
|
|
454
|
-
"@effect/sql-sqlite-bun": "4.0.0-beta.
|
|
455
|
-
"@effect/sql-sqlite-do": "4.0.0-beta.
|
|
456
|
-
"@effect/sql-sqlite-node": "4.0.0-beta.
|
|
457
|
-
"@effect/sql-sqlite-react-native": "4.0.0-beta.
|
|
458
|
-
"@effect/sql-sqlite-wasm": "4.0.0-beta.
|
|
459
|
-
"@effect/tsgo": "
|
|
460
|
-
"@effect/vitest": "4.0.0-beta.
|
|
461
|
-
"effect": "4.0.0-beta.
|
|
434
|
+
"@effect/ai-anthropic": "4.0.0-beta.99",
|
|
435
|
+
"@effect/ai-openai": "4.0.0-beta.99",
|
|
436
|
+
"@effect/ai-openai-compat": "4.0.0-beta.99",
|
|
437
|
+
"@effect/ai-openrouter": "4.0.0-beta.99",
|
|
438
|
+
"@effect/atom-react": "4.0.0-beta.99",
|
|
439
|
+
"@effect/atom-solid": "4.0.0-beta.99",
|
|
440
|
+
"@effect/atom-vue": "4.0.0-beta.99",
|
|
441
|
+
"@effect/openapi-generator": "4.0.0-beta.99",
|
|
442
|
+
"@effect/opentelemetry": "4.0.0-beta.99",
|
|
443
|
+
"@effect/platform-browser": "4.0.0-beta.99",
|
|
444
|
+
"@effect/platform-bun": "4.0.0-beta.99",
|
|
445
|
+
"@effect/platform-node": "4.0.0-beta.99",
|
|
446
|
+
"@effect/platform-node-shared": "4.0.0-beta.99",
|
|
447
|
+
"@effect/sql-clickhouse": "4.0.0-beta.99",
|
|
448
|
+
"@effect/sql-d1": "4.0.0-beta.99",
|
|
449
|
+
"@effect/sql-libsql": "4.0.0-beta.99",
|
|
450
|
+
"@effect/sql-mssql": "4.0.0-beta.99",
|
|
451
|
+
"@effect/sql-mysql2": "4.0.0-beta.99",
|
|
452
|
+
"@effect/sql-pg": "4.0.0-beta.99",
|
|
453
|
+
"@effect/sql-pglite": "4.0.0-beta.99",
|
|
454
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.99",
|
|
455
|
+
"@effect/sql-sqlite-do": "4.0.0-beta.99",
|
|
456
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.99",
|
|
457
|
+
"@effect/sql-sqlite-react-native": "4.0.0-beta.99",
|
|
458
|
+
"@effect/sql-sqlite-wasm": "4.0.0-beta.99",
|
|
459
|
+
"@effect/tsgo": "0.24.1",
|
|
460
|
+
"@effect/vitest": "4.0.0-beta.99",
|
|
461
|
+
"effect": "4.0.0-beta.99"
|
|
462
|
+
},
|
|
463
|
+
"effect:peers": {
|
|
464
|
+
"@effect/ai-anthropic": "4.0.0-beta.99",
|
|
465
|
+
"@effect/ai-openai": "4.0.0-beta.99",
|
|
466
|
+
"@effect/ai-openai-compat": "4.0.0-beta.99",
|
|
467
|
+
"@effect/ai-openrouter": "4.0.0-beta.99",
|
|
468
|
+
"@effect/atom-react": "4.0.0-beta.99",
|
|
469
|
+
"@effect/atom-solid": "4.0.0-beta.99",
|
|
470
|
+
"@effect/atom-vue": "4.0.0-beta.99",
|
|
471
|
+
"@effect/openapi-generator": "4.0.0-beta.99",
|
|
472
|
+
"@effect/opentelemetry": "4.0.0-beta.99",
|
|
473
|
+
"@effect/platform-browser": "4.0.0-beta.99",
|
|
474
|
+
"@effect/platform-bun": "4.0.0-beta.99",
|
|
475
|
+
"@effect/platform-node": "4.0.0-beta.99",
|
|
476
|
+
"@effect/platform-node-shared": "4.0.0-beta.99",
|
|
477
|
+
"@effect/sql-clickhouse": "4.0.0-beta.99",
|
|
478
|
+
"@effect/sql-d1": "4.0.0-beta.99",
|
|
479
|
+
"@effect/sql-libsql": "4.0.0-beta.99",
|
|
480
|
+
"@effect/sql-mssql": "4.0.0-beta.99",
|
|
481
|
+
"@effect/sql-mysql2": "4.0.0-beta.99",
|
|
482
|
+
"@effect/sql-pg": "4.0.0-beta.99",
|
|
483
|
+
"@effect/sql-pglite": "4.0.0-beta.99",
|
|
484
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.99",
|
|
485
|
+
"@effect/sql-sqlite-do": "4.0.0-beta.99",
|
|
486
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.99",
|
|
487
|
+
"@effect/sql-sqlite-react-native": "4.0.0-beta.99",
|
|
488
|
+
"@effect/sql-sqlite-wasm": "4.0.0-beta.99",
|
|
489
|
+
"@effect/tsgo": "0.24.1",
|
|
490
|
+
"@effect/vitest": "4.0.0-beta.99",
|
|
491
|
+
"effect": "4.0.0-beta.99"
|
|
462
492
|
},
|
|
463
493
|
"effect3": {
|
|
464
494
|
"@effect/ai": "^0.36.0",
|
|
@@ -498,6 +528,44 @@ const hooks = createHooks({
|
|
|
498
528
|
"@effect/workflow": "^0.18.2",
|
|
499
529
|
"effect": "^3.21.4"
|
|
500
530
|
},
|
|
531
|
+
"effect3:peers": {
|
|
532
|
+
"@effect/ai": "^0.36.0",
|
|
533
|
+
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
534
|
+
"@effect/ai-anthropic": "^0.26.0",
|
|
535
|
+
"@effect/ai-google": "^0.15.0",
|
|
536
|
+
"@effect/ai-openai": "^0.40.1",
|
|
537
|
+
"@effect/cli": "^0.75.2",
|
|
538
|
+
"@effect/cluster": "^0.59.0",
|
|
539
|
+
"@effect/experimental": "^0.60.0",
|
|
540
|
+
"@effect/language-service": "^0.86.6",
|
|
541
|
+
"@effect/opentelemetry": "^0.63.0",
|
|
542
|
+
"@effect/platform": "^0.96.0",
|
|
543
|
+
"@effect/platform-browser": "^0.76.0",
|
|
544
|
+
"@effect/platform-bun": "^0.90.0",
|
|
545
|
+
"@effect/platform-node": "^0.107.0",
|
|
546
|
+
"@effect/platform-node-shared": "^0.60.0",
|
|
547
|
+
"@effect/printer": "^0.49.0",
|
|
548
|
+
"@effect/printer-ansi": "^0.49.0",
|
|
549
|
+
"@effect/rpc": "^0.75.1",
|
|
550
|
+
"@effect/sql": "^0.51.0",
|
|
551
|
+
"@effect/sql-clickhouse": "^0.49.0",
|
|
552
|
+
"@effect/sql-d1": "^0.49.0",
|
|
553
|
+
"@effect/sql-drizzle": "^0.50.0",
|
|
554
|
+
"@effect/sql-kysely": "^0.47.0",
|
|
555
|
+
"@effect/sql-libsql": "^0.41.0",
|
|
556
|
+
"@effect/sql-mssql": "^0.52.0",
|
|
557
|
+
"@effect/sql-mysql2": "^0.52.0",
|
|
558
|
+
"@effect/sql-pg": "^0.52.1",
|
|
559
|
+
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
560
|
+
"@effect/sql-sqlite-do": "^0.29.0",
|
|
561
|
+
"@effect/sql-sqlite-node": "^0.52.0",
|
|
562
|
+
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
563
|
+
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
564
|
+
"@effect/typeclass": "^0.40.0",
|
|
565
|
+
"@effect/vitest": "^0.29.0",
|
|
566
|
+
"@effect/workflow": "^0.18.2",
|
|
567
|
+
"effect": "^3.21.0"
|
|
568
|
+
},
|
|
501
569
|
"effect3Peers": {
|
|
502
570
|
"@effect/ai": "^0.36.0",
|
|
503
571
|
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
@@ -537,37 +605,66 @@ const hooks = createHooks({
|
|
|
537
605
|
"effect": "^3.21.0"
|
|
538
606
|
},
|
|
539
607
|
"effectPeers": {
|
|
540
|
-
"@effect/ai-anthropic": "4.0.0-beta.
|
|
541
|
-
"@effect/ai-openai": "4.0.0-beta.
|
|
542
|
-
"@effect/ai-openai-compat": "4.0.0-beta.
|
|
543
|
-
"@effect/ai-openrouter": "4.0.0-beta.
|
|
544
|
-
"@effect/atom-react": "4.0.0-beta.
|
|
545
|
-
"@effect/atom-solid": "4.0.0-beta.
|
|
546
|
-
"@effect/atom-vue": "4.0.0-beta.
|
|
547
|
-
"@effect/openapi-generator": "4.0.0-beta.
|
|
548
|
-
"@effect/opentelemetry": "4.0.0-beta.
|
|
549
|
-
"@effect/platform-browser": "4.0.0-beta.
|
|
550
|
-
"@effect/platform-bun": "4.0.0-beta.
|
|
551
|
-
"@effect/platform-node": "4.0.0-beta.
|
|
552
|
-
"@effect/platform-node-shared": "4.0.0-beta.
|
|
553
|
-
"@effect/sql-clickhouse": "4.0.0-beta.
|
|
554
|
-
"@effect/sql-d1": "4.0.0-beta.
|
|
555
|
-
"@effect/sql-libsql": "4.0.0-beta.
|
|
556
|
-
"@effect/sql-mssql": "4.0.0-beta.
|
|
557
|
-
"@effect/sql-mysql2": "4.0.0-beta.
|
|
558
|
-
"@effect/sql-pg": "4.0.0-beta.
|
|
559
|
-
"@effect/sql-pglite": "4.0.0-beta.
|
|
560
|
-
"@effect/sql-sqlite-bun": "4.0.0-beta.
|
|
561
|
-
"@effect/sql-sqlite-do": "4.0.0-beta.
|
|
562
|
-
"@effect/sql-sqlite-node": "4.0.0-beta.
|
|
563
|
-
"@effect/sql-sqlite-react-native": "4.0.0-beta.
|
|
564
|
-
"@effect/sql-sqlite-wasm": "4.0.0-beta.
|
|
565
|
-
"@effect/tsgo": "
|
|
566
|
-
"@effect/vitest": "4.0.0-beta.
|
|
567
|
-
"effect": "4.0.0-beta.
|
|
608
|
+
"@effect/ai-anthropic": "4.0.0-beta.99",
|
|
609
|
+
"@effect/ai-openai": "4.0.0-beta.99",
|
|
610
|
+
"@effect/ai-openai-compat": "4.0.0-beta.99",
|
|
611
|
+
"@effect/ai-openrouter": "4.0.0-beta.99",
|
|
612
|
+
"@effect/atom-react": "4.0.0-beta.99",
|
|
613
|
+
"@effect/atom-solid": "4.0.0-beta.99",
|
|
614
|
+
"@effect/atom-vue": "4.0.0-beta.99",
|
|
615
|
+
"@effect/openapi-generator": "4.0.0-beta.99",
|
|
616
|
+
"@effect/opentelemetry": "4.0.0-beta.99",
|
|
617
|
+
"@effect/platform-browser": "4.0.0-beta.99",
|
|
618
|
+
"@effect/platform-bun": "4.0.0-beta.99",
|
|
619
|
+
"@effect/platform-node": "4.0.0-beta.99",
|
|
620
|
+
"@effect/platform-node-shared": "4.0.0-beta.99",
|
|
621
|
+
"@effect/sql-clickhouse": "4.0.0-beta.99",
|
|
622
|
+
"@effect/sql-d1": "4.0.0-beta.99",
|
|
623
|
+
"@effect/sql-libsql": "4.0.0-beta.99",
|
|
624
|
+
"@effect/sql-mssql": "4.0.0-beta.99",
|
|
625
|
+
"@effect/sql-mysql2": "4.0.0-beta.99",
|
|
626
|
+
"@effect/sql-pg": "4.0.0-beta.99",
|
|
627
|
+
"@effect/sql-pglite": "4.0.0-beta.99",
|
|
628
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.99",
|
|
629
|
+
"@effect/sql-sqlite-do": "4.0.0-beta.99",
|
|
630
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.99",
|
|
631
|
+
"@effect/sql-sqlite-react-native": "4.0.0-beta.99",
|
|
632
|
+
"@effect/sql-sqlite-wasm": "4.0.0-beta.99",
|
|
633
|
+
"@effect/tsgo": "0.24.1",
|
|
634
|
+
"@effect/vitest": "4.0.0-beta.99",
|
|
635
|
+
"effect": "4.0.0-beta.99"
|
|
568
636
|
}
|
|
569
637
|
},
|
|
570
|
-
"minimumReleaseAgeExclude": ["@effect/tsgo-*"]
|
|
638
|
+
"minimumReleaseAgeExclude": ["@effect/tsgo-*"],
|
|
639
|
+
"peerDependencyRules": { "allowedVersions": {
|
|
640
|
+
"@effect/ai-anthropic@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
641
|
+
"@effect/ai-openai-compat@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
642
|
+
"@effect/ai-openai@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
643
|
+
"@effect/ai-openrouter@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
644
|
+
"@effect/atom-react@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
645
|
+
"@effect/atom-solid@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
646
|
+
"@effect/atom-vue@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
647
|
+
"@effect/openapi-generator@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
648
|
+
"@effect/opentelemetry@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
649
|
+
"@effect/platform-browser@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
650
|
+
"@effect/platform-bun@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
651
|
+
"@effect/platform-node-shared@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
652
|
+
"@effect/platform-node@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
653
|
+
"@effect/sql-clickhouse@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
654
|
+
"@effect/sql-d1@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
655
|
+
"@effect/sql-libsql@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
656
|
+
"@effect/sql-mssql@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
657
|
+
"@effect/sql-mysql2@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
658
|
+
"@effect/sql-pg@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
659
|
+
"@effect/sql-pglite@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
660
|
+
"@effect/sql-sqlite-bun@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
661
|
+
"@effect/sql-sqlite-do@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
662
|
+
"@effect/sql-sqlite-node@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
663
|
+
"@effect/sql-sqlite-react-native@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
664
|
+
"@effect/sql-sqlite-wasm@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
665
|
+
"@effect/tsgo@0.24.1>effect": "4.0.0-beta.99",
|
|
666
|
+
"@effect/vitest@4.0.0-beta.99>effect": "4.0.0-beta.99"
|
|
667
|
+
} }
|
|
571
668
|
}, {
|
|
572
669
|
"catalogs": {
|
|
573
670
|
"enforcement": "warn",
|
|
@@ -576,6 +673,10 @@ const hooks = createHooks({
|
|
|
576
673
|
"minimumReleaseAgeExclude": {
|
|
577
674
|
"enforcement": "absent",
|
|
578
675
|
"strategy": "arrayUnion"
|
|
676
|
+
},
|
|
677
|
+
"peerDependencyRules": {
|
|
678
|
+
"enforcement": "warn",
|
|
679
|
+
"strategy": "peerDependencyRules"
|
|
579
680
|
}
|
|
580
681
|
}, "@effected/pnpm-plugin-effect");
|
|
581
682
|
|