create-kumiko-app 0.4.246 → 0.4.247
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/feature-manifest.json +20 -1
- package/package.json +4 -4
package/feature-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled + signup)",
|
|
3
|
-
"featureCount":
|
|
3
|
+
"featureCount": 70,
|
|
4
4
|
"features": [
|
|
5
5
|
{
|
|
6
6
|
"name": "admin-shell",
|
|
@@ -2729,6 +2729,25 @@
|
|
|
2729
2729
|
"category": "identity",
|
|
2730
2730
|
"recommended": true
|
|
2731
2731
|
}
|
|
2732
|
+
},
|
|
2733
|
+
{
|
|
2734
|
+
"name": "workflow-runner",
|
|
2735
|
+
"description": "Writes the run-envelope (`workflow.run-started` / `workflow.run-completed` / `workflow.run-failed`) for a workflow run onto its `workflow-run` aggregate stream. Provides `startAndRunWorkflow` and `registerEventTrigger` for consumer features to wire up `defineWorkflow`-based workflows against domain events. Registers no workflows itself. No resume-loop is bundled yet (framework#2480) — suspending steps (wait/waitForEvent/retry) fail the run instead of pausing it.",
|
|
2736
|
+
"toggleableDefault": null,
|
|
2737
|
+
"requires": [],
|
|
2738
|
+
"optionalRequires": [],
|
|
2739
|
+
"configReads": [],
|
|
2740
|
+
"exposesApis": [],
|
|
2741
|
+
"usesApis": [],
|
|
2742
|
+
"extensionsUsed": [],
|
|
2743
|
+
"configKeys": [],
|
|
2744
|
+
"secrets": [],
|
|
2745
|
+
"writeHandlers": [],
|
|
2746
|
+
"uiHints": {
|
|
2747
|
+
"displayLabel": "Workflow Runner",
|
|
2748
|
+
"category": "infrastructure",
|
|
2749
|
+
"recommended": false
|
|
2750
|
+
}
|
|
2732
2751
|
}
|
|
2733
2752
|
]
|
|
2734
2753
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kumiko-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.247",
|
|
4
4
|
"description": "`bun create kumiko-app <name>` — scaffold a new Kumiko app with an interactive feature picker.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@cosmicdrift/kumiko-dev-server": "0.
|
|
31
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
32
|
-
"@cosmicdrift/kumiko-server-runtime": "0.
|
|
30
|
+
"@cosmicdrift/kumiko-dev-server": "0.224.0",
|
|
31
|
+
"@cosmicdrift/kumiko-framework": "0.224.0",
|
|
32
|
+
"@cosmicdrift/kumiko-server-runtime": "0.224.0",
|
|
33
33
|
"@inquirer/core": "^10.0.0",
|
|
34
34
|
"@inquirer/prompts": "^7.4.0"
|
|
35
35
|
},
|