@effected/pnpm-plugin-effect 0.1.1 → 0.2.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 +1 -1
- package/index.js +56 -56
- package/package.json +3 -2
- package/pnpmfile.cjs +100 -67
- package/pnpmfile.mjs +100 -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.
|
package/index.js
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
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
32
|
])],
|
|
33
33
|
["effect3", /* @__PURE__ */ new Map([
|
|
34
34
|
["@effect/ai", "^0.36.0"],
|
|
@@ -107,34 +107,34 @@ const catalogs = /* @__PURE__ */ new Map([
|
|
|
107
107
|
["effect", "^3.21.0"]
|
|
108
108
|
])],
|
|
109
109
|
["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.
|
|
110
|
+
["@effect/ai-anthropic", "4.0.0-beta.99"],
|
|
111
|
+
["@effect/ai-openai", "4.0.0-beta.99"],
|
|
112
|
+
["@effect/ai-openai-compat", "4.0.0-beta.99"],
|
|
113
|
+
["@effect/ai-openrouter", "4.0.0-beta.99"],
|
|
114
|
+
["@effect/atom-react", "4.0.0-beta.99"],
|
|
115
|
+
["@effect/atom-solid", "4.0.0-beta.99"],
|
|
116
|
+
["@effect/atom-vue", "4.0.0-beta.99"],
|
|
117
|
+
["@effect/openapi-generator", "4.0.0-beta.99"],
|
|
118
|
+
["@effect/opentelemetry", "4.0.0-beta.99"],
|
|
119
|
+
["@effect/platform-browser", "4.0.0-beta.99"],
|
|
120
|
+
["@effect/platform-bun", "4.0.0-beta.99"],
|
|
121
|
+
["@effect/platform-node", "4.0.0-beta.99"],
|
|
122
|
+
["@effect/platform-node-shared", "4.0.0-beta.99"],
|
|
123
|
+
["@effect/sql-clickhouse", "4.0.0-beta.99"],
|
|
124
|
+
["@effect/sql-d1", "4.0.0-beta.99"],
|
|
125
|
+
["@effect/sql-libsql", "4.0.0-beta.99"],
|
|
126
|
+
["@effect/sql-mssql", "4.0.0-beta.99"],
|
|
127
|
+
["@effect/sql-mysql2", "4.0.0-beta.99"],
|
|
128
|
+
["@effect/sql-pg", "4.0.0-beta.99"],
|
|
129
|
+
["@effect/sql-pglite", "4.0.0-beta.99"],
|
|
130
|
+
["@effect/sql-sqlite-bun", "4.0.0-beta.99"],
|
|
131
|
+
["@effect/sql-sqlite-do", "4.0.0-beta.99"],
|
|
132
|
+
["@effect/sql-sqlite-node", "4.0.0-beta.99"],
|
|
133
|
+
["@effect/sql-sqlite-react-native", "4.0.0-beta.99"],
|
|
134
|
+
["@effect/sql-sqlite-wasm", "4.0.0-beta.99"],
|
|
135
|
+
["@effect/tsgo", "0.24.1"],
|
|
136
|
+
["@effect/vitest", "4.0.0-beta.99"],
|
|
137
|
+
["effect", "4.0.0-beta.99"]
|
|
138
138
|
])]
|
|
139
139
|
]);
|
|
140
140
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effected/pnpm-plugin-effect",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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,34 @@ 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
463
|
},
|
|
464
464
|
"effect3": {
|
|
465
465
|
"@effect/ai": "^0.36.0",
|
|
@@ -538,37 +538,66 @@ const hooks = createHooks({
|
|
|
538
538
|
"effect": "^3.21.0"
|
|
539
539
|
},
|
|
540
540
|
"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.
|
|
541
|
+
"@effect/ai-anthropic": "4.0.0-beta.99",
|
|
542
|
+
"@effect/ai-openai": "4.0.0-beta.99",
|
|
543
|
+
"@effect/ai-openai-compat": "4.0.0-beta.99",
|
|
544
|
+
"@effect/ai-openrouter": "4.0.0-beta.99",
|
|
545
|
+
"@effect/atom-react": "4.0.0-beta.99",
|
|
546
|
+
"@effect/atom-solid": "4.0.0-beta.99",
|
|
547
|
+
"@effect/atom-vue": "4.0.0-beta.99",
|
|
548
|
+
"@effect/openapi-generator": "4.0.0-beta.99",
|
|
549
|
+
"@effect/opentelemetry": "4.0.0-beta.99",
|
|
550
|
+
"@effect/platform-browser": "4.0.0-beta.99",
|
|
551
|
+
"@effect/platform-bun": "4.0.0-beta.99",
|
|
552
|
+
"@effect/platform-node": "4.0.0-beta.99",
|
|
553
|
+
"@effect/platform-node-shared": "4.0.0-beta.99",
|
|
554
|
+
"@effect/sql-clickhouse": "4.0.0-beta.99",
|
|
555
|
+
"@effect/sql-d1": "4.0.0-beta.99",
|
|
556
|
+
"@effect/sql-libsql": "4.0.0-beta.99",
|
|
557
|
+
"@effect/sql-mssql": "4.0.0-beta.99",
|
|
558
|
+
"@effect/sql-mysql2": "4.0.0-beta.99",
|
|
559
|
+
"@effect/sql-pg": "4.0.0-beta.99",
|
|
560
|
+
"@effect/sql-pglite": "4.0.0-beta.99",
|
|
561
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.99",
|
|
562
|
+
"@effect/sql-sqlite-do": "4.0.0-beta.99",
|
|
563
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.99",
|
|
564
|
+
"@effect/sql-sqlite-react-native": "4.0.0-beta.99",
|
|
565
|
+
"@effect/sql-sqlite-wasm": "4.0.0-beta.99",
|
|
566
|
+
"@effect/tsgo": "0.24.1",
|
|
567
|
+
"@effect/vitest": "4.0.0-beta.99",
|
|
568
|
+
"effect": "4.0.0-beta.99"
|
|
569
569
|
}
|
|
570
570
|
},
|
|
571
|
-
"minimumReleaseAgeExclude": ["@effect/tsgo-*"]
|
|
571
|
+
"minimumReleaseAgeExclude": ["@effect/tsgo-*"],
|
|
572
|
+
"peerDependencyRules": { "allowedVersions": {
|
|
573
|
+
"@effect/ai-anthropic@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
574
|
+
"@effect/ai-openai-compat@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
575
|
+
"@effect/ai-openai@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
576
|
+
"@effect/ai-openrouter@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
577
|
+
"@effect/atom-react@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
578
|
+
"@effect/atom-solid@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
579
|
+
"@effect/atom-vue@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
580
|
+
"@effect/openapi-generator@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
581
|
+
"@effect/opentelemetry@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
582
|
+
"@effect/platform-browser@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
583
|
+
"@effect/platform-bun@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
584
|
+
"@effect/platform-node-shared@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
585
|
+
"@effect/platform-node@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
586
|
+
"@effect/sql-clickhouse@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
587
|
+
"@effect/sql-d1@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
588
|
+
"@effect/sql-libsql@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
589
|
+
"@effect/sql-mssql@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
590
|
+
"@effect/sql-mysql2@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
591
|
+
"@effect/sql-pg@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
592
|
+
"@effect/sql-pglite@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
593
|
+
"@effect/sql-sqlite-bun@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
594
|
+
"@effect/sql-sqlite-do@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
595
|
+
"@effect/sql-sqlite-node@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
596
|
+
"@effect/sql-sqlite-react-native@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
597
|
+
"@effect/sql-sqlite-wasm@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
598
|
+
"@effect/tsgo@0.24.1>effect": "4.0.0-beta.99",
|
|
599
|
+
"@effect/vitest@4.0.0-beta.99>effect": "4.0.0-beta.99"
|
|
600
|
+
} }
|
|
572
601
|
}, {
|
|
573
602
|
"catalogs": {
|
|
574
603
|
"enforcement": "warn",
|
|
@@ -577,6 +606,10 @@ const hooks = createHooks({
|
|
|
577
606
|
"minimumReleaseAgeExclude": {
|
|
578
607
|
"enforcement": "absent",
|
|
579
608
|
"strategy": "arrayUnion"
|
|
609
|
+
},
|
|
610
|
+
"peerDependencyRules": {
|
|
611
|
+
"enforcement": "warn",
|
|
612
|
+
"strategy": "peerDependencyRules"
|
|
580
613
|
}
|
|
581
614
|
}, "@effected/pnpm-plugin-effect");
|
|
582
615
|
|
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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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.4.1_@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,34 @@ 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
462
|
},
|
|
463
463
|
"effect3": {
|
|
464
464
|
"@effect/ai": "^0.36.0",
|
|
@@ -537,37 +537,66 @@ const hooks = createHooks({
|
|
|
537
537
|
"effect": "^3.21.0"
|
|
538
538
|
},
|
|
539
539
|
"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.
|
|
540
|
+
"@effect/ai-anthropic": "4.0.0-beta.99",
|
|
541
|
+
"@effect/ai-openai": "4.0.0-beta.99",
|
|
542
|
+
"@effect/ai-openai-compat": "4.0.0-beta.99",
|
|
543
|
+
"@effect/ai-openrouter": "4.0.0-beta.99",
|
|
544
|
+
"@effect/atom-react": "4.0.0-beta.99",
|
|
545
|
+
"@effect/atom-solid": "4.0.0-beta.99",
|
|
546
|
+
"@effect/atom-vue": "4.0.0-beta.99",
|
|
547
|
+
"@effect/openapi-generator": "4.0.0-beta.99",
|
|
548
|
+
"@effect/opentelemetry": "4.0.0-beta.99",
|
|
549
|
+
"@effect/platform-browser": "4.0.0-beta.99",
|
|
550
|
+
"@effect/platform-bun": "4.0.0-beta.99",
|
|
551
|
+
"@effect/platform-node": "4.0.0-beta.99",
|
|
552
|
+
"@effect/platform-node-shared": "4.0.0-beta.99",
|
|
553
|
+
"@effect/sql-clickhouse": "4.0.0-beta.99",
|
|
554
|
+
"@effect/sql-d1": "4.0.0-beta.99",
|
|
555
|
+
"@effect/sql-libsql": "4.0.0-beta.99",
|
|
556
|
+
"@effect/sql-mssql": "4.0.0-beta.99",
|
|
557
|
+
"@effect/sql-mysql2": "4.0.0-beta.99",
|
|
558
|
+
"@effect/sql-pg": "4.0.0-beta.99",
|
|
559
|
+
"@effect/sql-pglite": "4.0.0-beta.99",
|
|
560
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.99",
|
|
561
|
+
"@effect/sql-sqlite-do": "4.0.0-beta.99",
|
|
562
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.99",
|
|
563
|
+
"@effect/sql-sqlite-react-native": "4.0.0-beta.99",
|
|
564
|
+
"@effect/sql-sqlite-wasm": "4.0.0-beta.99",
|
|
565
|
+
"@effect/tsgo": "0.24.1",
|
|
566
|
+
"@effect/vitest": "4.0.0-beta.99",
|
|
567
|
+
"effect": "4.0.0-beta.99"
|
|
568
568
|
}
|
|
569
569
|
},
|
|
570
|
-
"minimumReleaseAgeExclude": ["@effect/tsgo-*"]
|
|
570
|
+
"minimumReleaseAgeExclude": ["@effect/tsgo-*"],
|
|
571
|
+
"peerDependencyRules": { "allowedVersions": {
|
|
572
|
+
"@effect/ai-anthropic@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
573
|
+
"@effect/ai-openai-compat@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
574
|
+
"@effect/ai-openai@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
575
|
+
"@effect/ai-openrouter@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
576
|
+
"@effect/atom-react@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
577
|
+
"@effect/atom-solid@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
578
|
+
"@effect/atom-vue@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
579
|
+
"@effect/openapi-generator@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
580
|
+
"@effect/opentelemetry@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
581
|
+
"@effect/platform-browser@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
582
|
+
"@effect/platform-bun@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
583
|
+
"@effect/platform-node-shared@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
584
|
+
"@effect/platform-node@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
585
|
+
"@effect/sql-clickhouse@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
586
|
+
"@effect/sql-d1@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
587
|
+
"@effect/sql-libsql@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
588
|
+
"@effect/sql-mssql@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
589
|
+
"@effect/sql-mysql2@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
590
|
+
"@effect/sql-pg@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
591
|
+
"@effect/sql-pglite@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
592
|
+
"@effect/sql-sqlite-bun@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
593
|
+
"@effect/sql-sqlite-do@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
594
|
+
"@effect/sql-sqlite-node@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
595
|
+
"@effect/sql-sqlite-react-native@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
596
|
+
"@effect/sql-sqlite-wasm@4.0.0-beta.99>effect": "4.0.0-beta.99",
|
|
597
|
+
"@effect/tsgo@0.24.1>effect": "4.0.0-beta.99",
|
|
598
|
+
"@effect/vitest@4.0.0-beta.99>effect": "4.0.0-beta.99"
|
|
599
|
+
} }
|
|
571
600
|
}, {
|
|
572
601
|
"catalogs": {
|
|
573
602
|
"enforcement": "warn",
|
|
@@ -576,6 +605,10 @@ const hooks = createHooks({
|
|
|
576
605
|
"minimumReleaseAgeExclude": {
|
|
577
606
|
"enforcement": "absent",
|
|
578
607
|
"strategy": "arrayUnion"
|
|
608
|
+
},
|
|
609
|
+
"peerDependencyRules": {
|
|
610
|
+
"enforcement": "warn",
|
|
611
|
+
"strategy": "peerDependencyRules"
|
|
579
612
|
}
|
|
580
613
|
}, "@effected/pnpm-plugin-effect");
|
|
581
614
|
|