lalph 0.3.112 → 0.3.114

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.3.112",
4
+ "version": "0.3.114",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -41,11 +41,11 @@
41
41
  "@effect/ai-openai-compat": "4.0.0-beta.40",
42
42
  "@effect/language-service": "^0.83.1",
43
43
  "@effect/platform-node": "4.0.0-beta.40",
44
- "@linear/sdk": "^79.0.0",
44
+ "@linear/sdk": "^80.0.0",
45
45
  "@octokit/plugin-rest-endpoint-methods": "^17.0.0",
46
46
  "@octokit/types": "^16.0.0",
47
47
  "@typescript/native-preview": "7.0.0-dev.20260324.1",
48
- "clanka": "^0.2.37",
48
+ "clanka": "^0.2.38",
49
49
  "concurrently": "^9.2.1",
50
50
  "effect": "4.0.0-beta.40",
51
51
  "husky": "^9.1.7",
@@ -5,6 +5,7 @@ import {
5
5
  Effect,
6
6
  FiberHandle,
7
7
  Option,
8
+ Schedule,
8
9
  Schema,
9
10
  ScopedCache,
10
11
  ServiceMap,
@@ -114,8 +115,9 @@ export class IssueSource extends ServiceMap.Service<
114
115
  Effect.tap((issues) =>
115
116
  SubscriptionRef.set(ref, IssuesChange.External({ issues })),
116
117
  ),
117
- Effect.ignoreCause,
118
118
  Effect.delay(Duration.seconds(30)),
119
+ Effect.sandbox,
120
+ Effect.retry(Schedule.forever),
119
121
  Stream.fromEffectDrain,
120
122
  ),
121
123
  ),