lalph 0.3.20 → 0.3.22
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/dist/cli.mjs +857 -720
- package/package.json +3 -3
- package/src/CurrentIssueSource.ts +1 -5
- package/src/GitFlow.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lalph",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.22",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"@changesets/changelog-github": "^0.5.2",
|
|
24
24
|
"@changesets/cli": "^2.29.8",
|
|
25
25
|
"@effect/language-service": "^0.72.0",
|
|
26
|
-
"@effect/platform-node": "https://pkg.pr.new/Effect-TS/effect-smol/@effect/platform-node@
|
|
26
|
+
"@effect/platform-node": "https://pkg.pr.new/Effect-TS/effect-smol/@effect/platform-node@33f368f",
|
|
27
27
|
"@linear/sdk": "^72.0.0",
|
|
28
28
|
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
|
|
29
29
|
"@octokit/types": "^16.0.0",
|
|
30
30
|
"concurrently": "^9.2.1",
|
|
31
|
-
"effect": "https://pkg.pr.new/Effect-TS/effect-smol/effect@
|
|
31
|
+
"effect": "https://pkg.pr.new/Effect-TS/effect-smol/effect@33f368f",
|
|
32
32
|
"husky": "^9.1.7",
|
|
33
33
|
"lint-staged": "^16.2.7",
|
|
34
34
|
"octokit": "^5.0.5",
|
|
@@ -171,11 +171,7 @@ export const currentIssuesAtom = Atom.family((projectId: ProjectId) =>
|
|
|
171
171
|
Effect.withSpan("currentIssuesAtom.refresh"),
|
|
172
172
|
)
|
|
173
173
|
const handle = setTimeout(() => {
|
|
174
|
-
|
|
175
|
-
get.refreshSelf()
|
|
176
|
-
} catch {
|
|
177
|
-
// ignore - if the atom is no longer in use, refreshing will throw an error, which we can safely ignore
|
|
178
|
-
}
|
|
174
|
+
get.refreshSelf()
|
|
179
175
|
}, 30_000)
|
|
180
176
|
get.addFinalizer(() => clearTimeout(handle))
|
|
181
177
|
return issues
|
package/src/GitFlow.ts
CHANGED
|
@@ -130,7 +130,7 @@ export const GitFlowCommit = Layer.effect(
|
|
|
130
130
|
- **DO NOT** commit any of the files in the \`.lalph\` directory.`,
|
|
131
131
|
|
|
132
132
|
reviewInstructions: `You are already on the branch with their changes.
|
|
133
|
-
After making any changes, **you
|
|
133
|
+
After making any changes, **you must** commit them to the same branch.
|
|
134
134
|
But you **do not** need to git push your changes or switch branches.
|
|
135
135
|
|
|
136
136
|
- Include \`References {task id}\` in each commit message.
|