lalph 0.1.68 → 0.1.69

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 CHANGED
@@ -142103,7 +142103,7 @@ var Prd = class extends Service()("lalph/Prd", { make: gen(function* () {
142103
142103
  maybeRevertIssue,
142104
142104
  revertUpdatedIssues: gen(function* () {
142105
142105
  for (const issue of updatedIssues.values()) {
142106
- if (issue.state !== "done") continue;
142106
+ if (issue.state === "done") continue;
142107
142107
  yield* source.updateIssue({
142108
142108
  issueId: issue.id,
142109
142109
  state: "todo"
@@ -142442,7 +142442,7 @@ const commandSource = make$27("source").pipe(withDescription("Select the issue s
142442
142442
 
142443
142443
  //#endregion
142444
142444
  //#region package.json
142445
- var version = "0.1.68";
142445
+ var version = "0.1.69";
142446
142446
 
142447
142447
  //#endregion
142448
142448
  //#region src/cli.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.1.68",
4
+ "version": "0.1.69",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
package/src/Prd.ts CHANGED
@@ -239,7 +239,7 @@ export class Prd extends ServiceMap.Service<
239
239
  maybeRevertIssue,
240
240
  revertUpdatedIssues: Effect.gen(function* () {
241
241
  for (const issue of updatedIssues.values()) {
242
- if (issue.state !== "done") continue
242
+ if (issue.state === "done") continue
243
243
  yield* source.updateIssue({
244
244
  issueId: issue.id!,
245
245
  state: "todo",