@beastmode-develeap/beastmode 0.1.245 → 0.1.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/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/web/board.html +60 -21
- package/dist/web/build-commit.txt +1 -1
- package/dist/web/build-stamp.txt +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7036,6 +7036,11 @@ async function setItemStatus(itemId, status, opts) {
|
|
|
7036
7036
|
if (!trimmedStatus) {
|
|
7037
7037
|
throw new Error("status cannot be empty");
|
|
7038
7038
|
}
|
|
7039
|
+
if (trimmedStatus === "Superseded") {
|
|
7040
|
+
throw new Error(
|
|
7041
|
+
"Use `beastmode supersede <item-id>` to mark items as Superseded. That command collects required metadata (successor ID and reason for epics) and provides a confirmation step."
|
|
7042
|
+
);
|
|
7043
|
+
}
|
|
7039
7044
|
let project = opts.project;
|
|
7040
7045
|
if (!project) {
|
|
7041
7046
|
const factoryDir = findFactoryDir();
|