@savvy-web/pnpm-plugin-silk 0.13.1 → 0.13.3
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 -2
- package/index.cjs +11 -6
- package/package.json +1 -1
- package/pnpmfile.cjs +19 -15
package/README.md
CHANGED
|
@@ -20,8 +20,7 @@ of truth.
|
|
|
20
20
|
`publicHoistPattern` settings across repositories
|
|
21
21
|
- **Peer dependency rules** - Syncs `peerDependencyRules` (allowedVersions,
|
|
22
22
|
ignoreMissing, allowAny) to suppress common peer warnings
|
|
23
|
-
- **Effect ecosystem management** -
|
|
24
|
-
seven functional groups with compatible version resolution
|
|
23
|
+
- **Effect ecosystem management** - 26 coordinated `@effect/*` packages across eight functional groups with compatible version resolution
|
|
25
24
|
- **Non-destructive merging** - Local definitions always take precedence with
|
|
26
25
|
clear warnings for divergences
|
|
27
26
|
|
package/index.cjs
CHANGED
|
@@ -36,7 +36,7 @@ const silkCatalogs = {
|
|
|
36
36
|
"@effect/cli": "^0.75.1",
|
|
37
37
|
"@effect/cluster": "^0.58.2",
|
|
38
38
|
"@effect/experimental": "^0.60.0",
|
|
39
|
-
"@effect/language-service": "^0.86.
|
|
39
|
+
"@effect/language-service": "^0.86.2",
|
|
40
40
|
"@effect/opentelemetry": "^0.63.0",
|
|
41
41
|
"@effect/platform": "^0.96.1",
|
|
42
42
|
"@effect/platform-browser": "^0.76.0",
|
|
@@ -50,16 +50,18 @@ const silkCatalogs = {
|
|
|
50
50
|
"@effect/sql-pg": "^0.52.1",
|
|
51
51
|
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
52
52
|
"@effect/sql-sqlite-node": "^0.52.0",
|
|
53
|
+
"@effect/tsgo": "^0.11.0",
|
|
53
54
|
"@effect/typeclass": "^0.40.0",
|
|
55
|
+
"@effect/vitest": "^0.29.0",
|
|
54
56
|
"@effect/workflow": "^0.18.1",
|
|
55
|
-
"@types/node": "^25.
|
|
56
|
-
"@types/react": "^19.2.
|
|
57
|
+
"@types/node": "^25.9.1",
|
|
58
|
+
"@types/react": "^19.2.15",
|
|
57
59
|
"@types/react-dom": "^19.2.3",
|
|
58
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
60
|
+
"@typescript/native-preview": "^7.0.0-dev.20260523.1",
|
|
59
61
|
effect: "^3.21.2",
|
|
60
62
|
react: "^19.2.6",
|
|
61
63
|
"react-dom": "^19.2.6",
|
|
62
|
-
tsx: "^4.
|
|
64
|
+
tsx: "^4.22.3",
|
|
63
65
|
typescript: "^6.0.3"
|
|
64
66
|
},
|
|
65
67
|
silkPeers: {
|
|
@@ -71,7 +73,7 @@ const silkCatalogs = {
|
|
|
71
73
|
"@effect/cli": ">=0.75.1",
|
|
72
74
|
"@effect/cluster": ">=0.58.0",
|
|
73
75
|
"@effect/experimental": ">=0.60.0",
|
|
74
|
-
"@effect/language-service": ">=0.86.
|
|
76
|
+
"@effect/language-service": ">=0.86.2",
|
|
75
77
|
"@effect/opentelemetry": ">=0.63.0",
|
|
76
78
|
"@effect/platform": ">=0.96.0",
|
|
77
79
|
"@effect/platform-browser": ">=0.76.0",
|
|
@@ -85,7 +87,9 @@ const silkCatalogs = {
|
|
|
85
87
|
"@effect/sql-pg": ">=0.52.1",
|
|
86
88
|
"@effect/sql-sqlite-bun": ">=0.52.0",
|
|
87
89
|
"@effect/sql-sqlite-node": ">=0.52.0",
|
|
90
|
+
"@effect/tsgo": ">=0.11.0",
|
|
88
91
|
"@effect/typeclass": ">=0.40.0",
|
|
92
|
+
"@effect/vitest": ">=0.29.0",
|
|
89
93
|
"@effect/workflow": ">=0.18.0",
|
|
90
94
|
"@types/node": "^25.6.0",
|
|
91
95
|
"@types/react": "^19.2.0",
|
|
@@ -143,6 +147,7 @@ const silkCatalogs = {
|
|
|
143
147
|
};
|
|
144
148
|
const silkPeerDependencyRules = {
|
|
145
149
|
allowedVersions: {
|
|
150
|
+
"@effect/vitest>vitest": "^4.1.0",
|
|
146
151
|
"@typescript-eslint/project-service>typescript": "^6.0.0",
|
|
147
152
|
"@typescript-eslint/tsconfig-utils>typescript": "^6.0.0",
|
|
148
153
|
"@typescript-eslint/typescript-estree>typescript": "^6.0.0",
|
package/package.json
CHANGED
package/pnpmfile.cjs
CHANGED
|
@@ -3476,7 +3476,6 @@ const runtimeFlagsPatch_andThen = /*#__PURE__*/ Function_dual(2, (self, that)=>s
|
|
|
3476
3476
|
const invert = (n)=>~n >>> 0 & BIT_MASK;
|
|
3477
3477
|
const runtimeFlags_None = 0;
|
|
3478
3478
|
const Interruption = 1;
|
|
3479
|
-
const OpSupervision = 2;
|
|
3480
3479
|
const RuntimeMetrics = 4;
|
|
3481
3480
|
const WindDown = 16;
|
|
3482
3481
|
const CooperativeYielding = 32;
|
|
@@ -3882,7 +3881,7 @@ const forEachSequentialDiscard = /*#__PURE__*/ Function_dual(2, (self, f)=>core_
|
|
|
3882
3881
|
const interruptWith = (fiberId)=>failCause(interrupt(fiberId));
|
|
3883
3882
|
const core_interruptible = (self)=>{
|
|
3884
3883
|
const effect = new EffectPrimitive(OP_UPDATE_RUNTIME_FLAGS);
|
|
3885
|
-
effect.effect_instruction_i0 = RuntimeFlagsPatch_enable(
|
|
3884
|
+
effect.effect_instruction_i0 = RuntimeFlagsPatch_enable(1);
|
|
3886
3885
|
effect.effect_instruction_i1 = ()=>self;
|
|
3887
3886
|
return effect;
|
|
3888
3887
|
};
|
|
@@ -3968,13 +3967,13 @@ const attemptOrElse = /*#__PURE__*/ Function_dual(3, (self, that, onSuccess)=>ma
|
|
|
3968
3967
|
}));
|
|
3969
3968
|
const uninterruptible = (self)=>{
|
|
3970
3969
|
const effect = new EffectPrimitive(OP_UPDATE_RUNTIME_FLAGS);
|
|
3971
|
-
effect.effect_instruction_i0 = RuntimeFlagsPatch_disable(
|
|
3970
|
+
effect.effect_instruction_i0 = RuntimeFlagsPatch_disable(1);
|
|
3972
3971
|
effect.effect_instruction_i1 = ()=>self;
|
|
3973
3972
|
return effect;
|
|
3974
3973
|
};
|
|
3975
3974
|
const uninterruptibleMask = (f)=>custom(f, function() {
|
|
3976
3975
|
const effect = new EffectPrimitive(OP_UPDATE_RUNTIME_FLAGS);
|
|
3977
|
-
effect.effect_instruction_i0 = RuntimeFlagsPatch_disable(
|
|
3976
|
+
effect.effect_instruction_i0 = RuntimeFlagsPatch_disable(1);
|
|
3978
3977
|
effect.effect_instruction_i1 = (oldFlags)=>runtimeFlags_interruption(oldFlags) ? internalCall(()=>this.effect_instruction_i0(core_interruptible)) : internalCall(()=>this.effect_instruction_i0(uninterruptible));
|
|
3979
3978
|
return effect;
|
|
3980
3979
|
});
|
|
@@ -7693,7 +7692,7 @@ class FiberRuntime extends Effectable_Class {
|
|
|
7693
7692
|
const updatedFiberRefs = joinAs(parentFiberRefs, parentFiberId, childFiberRefs);
|
|
7694
7693
|
parentFiber.setFiberRefs(updatedFiberRefs);
|
|
7695
7694
|
const updatedRuntimeFlags = parentFiber.getFiberRef(currentRuntimeFlags);
|
|
7696
|
-
const patch = Function_pipe(runtimeFlags_diff(parentRuntimeFlags, updatedRuntimeFlags), RuntimeFlagsPatch_exclude(
|
|
7695
|
+
const patch = Function_pipe(runtimeFlags_diff(parentRuntimeFlags, updatedRuntimeFlags), RuntimeFlagsPatch_exclude(1), RuntimeFlagsPatch_exclude(16));
|
|
7697
7696
|
return updateRuntimeFlags(patch);
|
|
7698
7697
|
});
|
|
7699
7698
|
}
|
|
@@ -7927,7 +7926,7 @@ class FiberRuntime extends Effectable_Class {
|
|
|
7927
7926
|
} else effect = exitVoid;
|
|
7928
7927
|
else if ("Async" === op._op) effect = null;
|
|
7929
7928
|
} else {
|
|
7930
|
-
this.currentRuntimeFlags = Function_pipe(this.currentRuntimeFlags, runtimeFlags_enable(
|
|
7929
|
+
this.currentRuntimeFlags = Function_pipe(this.currentRuntimeFlags, runtimeFlags_enable(16));
|
|
7931
7930
|
const interruption = this.interruptAllChildren();
|
|
7932
7931
|
if (null !== interruption) effect = core_flatMap(interruption, ()=>exit);
|
|
7933
7932
|
else {
|
|
@@ -8176,7 +8175,7 @@ class FiberRuntime extends Effectable_Class {
|
|
|
8176
8175
|
let cur = effect0;
|
|
8177
8176
|
this.currentOpCount = 0;
|
|
8178
8177
|
while(true){
|
|
8179
|
-
if ((this.currentRuntimeFlags
|
|
8178
|
+
if ((2 & this.currentRuntimeFlags) !== 0) this.currentSupervisor.onEffect(this, cur);
|
|
8180
8179
|
if (this._queue.length > 0) cur = this.drainQueueWhileRunning(this.currentRuntimeFlags, cur);
|
|
8181
8180
|
if (!this._isYielding) {
|
|
8182
8181
|
this.currentOpCount += 1;
|
|
@@ -8239,7 +8238,7 @@ const currentLoggers = /*#__PURE__*/ GlobalValue_globalValue(/*#__PURE__*/ Symbo
|
|
|
8239
8238
|
const fiberRuntime_acquireRelease = /*#__PURE__*/ Function_dual((args)=>isEffect(args[0]), (acquire, release)=>uninterruptible(core_tap(acquire, (a)=>fiberRuntime_addFinalizer((exit)=>release(a, exit)))));
|
|
8240
8239
|
const fiberRuntime_addFinalizer = (finalizer)=>withFiberRuntime((runtime)=>{
|
|
8241
8240
|
const acquireRefs = runtime.getFiberRefs();
|
|
8242
|
-
const acquireFlags = runtimeFlags_disable(runtime.currentRuntimeFlags,
|
|
8241
|
+
const acquireFlags = runtimeFlags_disable(runtime.currentRuntimeFlags, 1);
|
|
8243
8242
|
return core_flatMap(fiberRuntime_scope, (scope)=>scopeAddFinalizerExit(scope, (exit)=>withFiberRuntime((runtimeFinalizer)=>{
|
|
8244
8243
|
const preRefs = runtimeFinalizer.getFiberRefs();
|
|
8245
8244
|
const preFlags = runtimeFinalizer.currentRuntimeFlags;
|
|
@@ -9083,7 +9082,7 @@ class RuntimeImpl {
|
|
|
9083
9082
|
}
|
|
9084
9083
|
}
|
|
9085
9084
|
const runtime_make = (options)=>new RuntimeImpl(options.context, options.runtimeFlags, options.fiberRefs);
|
|
9086
|
-
const defaultRuntimeFlags = /*#__PURE__*/ runtimeFlags_make(
|
|
9085
|
+
const defaultRuntimeFlags = /*#__PURE__*/ runtimeFlags_make(1, 32, 4);
|
|
9087
9086
|
const defaultRuntime = /*#__PURE__*/ runtime_make({
|
|
9088
9087
|
context: /*#__PURE__*/ Context_empty(),
|
|
9089
9088
|
runtimeFlags: defaultRuntimeFlags,
|
|
@@ -10098,7 +10097,7 @@ const silkCatalogs = {
|
|
|
10098
10097
|
"@effect/cli": "^0.75.1",
|
|
10099
10098
|
"@effect/cluster": "^0.58.2",
|
|
10100
10099
|
"@effect/experimental": "^0.60.0",
|
|
10101
|
-
"@effect/language-service": "^0.86.
|
|
10100
|
+
"@effect/language-service": "^0.86.2",
|
|
10102
10101
|
"@effect/opentelemetry": "^0.63.0",
|
|
10103
10102
|
"@effect/platform": "^0.96.1",
|
|
10104
10103
|
"@effect/platform-browser": "^0.76.0",
|
|
@@ -10112,16 +10111,18 @@ const silkCatalogs = {
|
|
|
10112
10111
|
"@effect/sql-pg": "^0.52.1",
|
|
10113
10112
|
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
10114
10113
|
"@effect/sql-sqlite-node": "^0.52.0",
|
|
10114
|
+
"@effect/tsgo": "^0.11.0",
|
|
10115
10115
|
"@effect/typeclass": "^0.40.0",
|
|
10116
|
+
"@effect/vitest": "^0.29.0",
|
|
10116
10117
|
"@effect/workflow": "^0.18.1",
|
|
10117
|
-
"@types/node": "^25.
|
|
10118
|
-
"@types/react": "^19.2.
|
|
10118
|
+
"@types/node": "^25.9.1",
|
|
10119
|
+
"@types/react": "^19.2.15",
|
|
10119
10120
|
"@types/react-dom": "^19.2.3",
|
|
10120
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
10121
|
+
"@typescript/native-preview": "^7.0.0-dev.20260523.1",
|
|
10121
10122
|
effect: "^3.21.2",
|
|
10122
10123
|
react: "^19.2.6",
|
|
10123
10124
|
"react-dom": "^19.2.6",
|
|
10124
|
-
tsx: "^4.
|
|
10125
|
+
tsx: "^4.22.3",
|
|
10125
10126
|
typescript: "^6.0.3"
|
|
10126
10127
|
},
|
|
10127
10128
|
silkPeers: {
|
|
@@ -10133,7 +10134,7 @@ const silkCatalogs = {
|
|
|
10133
10134
|
"@effect/cli": ">=0.75.1",
|
|
10134
10135
|
"@effect/cluster": ">=0.58.0",
|
|
10135
10136
|
"@effect/experimental": ">=0.60.0",
|
|
10136
|
-
"@effect/language-service": ">=0.86.
|
|
10137
|
+
"@effect/language-service": ">=0.86.2",
|
|
10137
10138
|
"@effect/opentelemetry": ">=0.63.0",
|
|
10138
10139
|
"@effect/platform": ">=0.96.0",
|
|
10139
10140
|
"@effect/platform-browser": ">=0.76.0",
|
|
@@ -10147,7 +10148,9 @@ const silkCatalogs = {
|
|
|
10147
10148
|
"@effect/sql-pg": ">=0.52.1",
|
|
10148
10149
|
"@effect/sql-sqlite-bun": ">=0.52.0",
|
|
10149
10150
|
"@effect/sql-sqlite-node": ">=0.52.0",
|
|
10151
|
+
"@effect/tsgo": ">=0.11.0",
|
|
10150
10152
|
"@effect/typeclass": ">=0.40.0",
|
|
10153
|
+
"@effect/vitest": ">=0.29.0",
|
|
10151
10154
|
"@effect/workflow": ">=0.18.0",
|
|
10152
10155
|
"@types/node": "^25.6.0",
|
|
10153
10156
|
"@types/react": "^19.2.0",
|
|
@@ -10205,6 +10208,7 @@ const silkCatalogs = {
|
|
|
10205
10208
|
};
|
|
10206
10209
|
const silkPeerDependencyRules = {
|
|
10207
10210
|
allowedVersions: {
|
|
10211
|
+
"@effect/vitest>vitest": "^4.1.0",
|
|
10208
10212
|
"@typescript-eslint/project-service>typescript": "^6.0.0",
|
|
10209
10213
|
"@typescript-eslint/tsconfig-utils>typescript": "^6.0.0",
|
|
10210
10214
|
"@typescript-eslint/typescript-estree>typescript": "^6.0.0",
|