flowcat 1.6.1 → 1.6.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/core/fsm.ts +3 -1
- package/dist/fcat.mjs +11309 -15143
- package/dist/index.mjs +3 -1
- package/package.json +12 -1
package/dist/index.mjs
CHANGED
|
@@ -30980,7 +30980,9 @@ var transitionTable = {
|
|
|
30980
30980
|
cancel: "cancelled"
|
|
30981
30981
|
},
|
|
30982
30982
|
completed: {},
|
|
30983
|
-
cancelled: {
|
|
30983
|
+
cancelled: {
|
|
30984
|
+
start: "backlog"
|
|
30985
|
+
}
|
|
30984
30986
|
};
|
|
30985
30987
|
var getNextStatus = (current, action) => {
|
|
30986
30988
|
const next = transitionTable[current][action];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowcat",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -42,13 +42,24 @@
|
|
|
42
42
|
"prepublishOnly": "npm run build"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
+
"@opentui/core": "^0.1.74",
|
|
46
|
+
"@opentui/react": "^0.1.74",
|
|
45
47
|
"commander": "^11.1.0",
|
|
46
48
|
"jiti": "^2.4.2",
|
|
47
49
|
"luxon": "^3.5.0",
|
|
48
50
|
"octokit": "^3.1.2",
|
|
49
51
|
"proper-lockfile": "^4.1.2",
|
|
52
|
+
"react": "^19.2.3",
|
|
50
53
|
"ulid": "^2.3.0",
|
|
51
54
|
"write-file-atomic": "^5.0.1",
|
|
52
55
|
"zod": "^3.22.4"
|
|
56
|
+
},
|
|
57
|
+
"optionalDependencies": {
|
|
58
|
+
"@opentui/core-darwin-x64": "^0.1.74",
|
|
59
|
+
"@opentui/core-darwin-arm64": "^0.1.74",
|
|
60
|
+
"@opentui/core-linux-x64": "^0.1.74",
|
|
61
|
+
"@opentui/core-linux-arm64": "^0.1.74",
|
|
62
|
+
"@opentui/core-win32-x64": "^0.1.74",
|
|
63
|
+
"@opentui/core-win32-arm64": "^0.1.74"
|
|
53
64
|
}
|
|
54
65
|
}
|