@typeonce/effect-machine-devtools 0.32.0 → 0.33.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typeonce/effect-machine-devtools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.33.0",
|
|
4
4
|
"description": "Local development tools for Effect Machine",
|
|
5
5
|
"author": "Sandro Maglione",
|
|
6
6
|
"repository": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"elkjs": "0.12.0",
|
|
34
34
|
"typescript": "6.0.3",
|
|
35
35
|
"vite": "8.1.5",
|
|
36
|
-
"@typeonce/effect-machine": "^0.
|
|
36
|
+
"@typeonce/effect-machine": "^0.33.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"effect": "4.0.0-rc.112"
|
|
@@ -190,7 +190,7 @@ export const transitionSemanticsMachine = Machine.make({
|
|
|
190
190
|
? select.publish.decoded(new WorkspaceFinished({ result: "published directly" }))
|
|
191
191
|
: select.review.decoded(new Review({ requestedBy: event.requestedBy }))
|
|
192
192
|
),
|
|
193
|
-
Refresh: (to) => to.none.
|
|
193
|
+
Refresh: (to) => to.none.reenter(),
|
|
194
194
|
Ignore: (to) => to.none,
|
|
195
195
|
MaybeHandle: (to) =>
|
|
196
196
|
to.none.resolve(({ decline, event }) => event.accept ? undefined : decline(), {
|