maxsimcli 3.1.1 → 3.1.2
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.
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap"
|
|
11
11
|
rel="stylesheet"
|
|
12
12
|
/>
|
|
13
|
-
<script type="module" crossorigin src="/assets/index-
|
|
13
|
+
<script type="module" crossorigin src="/assets/index-22m82eWY.js"></script>
|
|
14
14
|
<link rel="stylesheet" crossorigin href="/assets/index-OELE7ZOu.css">
|
|
15
15
|
</head>
|
|
16
16
|
<body>
|
|
@@ -57607,14 +57607,15 @@ function parsePhaseDetail(cwd, phaseId) {
|
|
|
57607
57607
|
const verifyMatch = taskBody.match(/<verify>([\s\S]*?)<\/verify>/);
|
|
57608
57608
|
const doneMatch = taskBody.match(/<done>([\s\S]*?)<\/done>/);
|
|
57609
57609
|
const files = filesMatch ? filesMatch[1].trim().split("\n").map((f) => f.trim()).filter(Boolean) : [];
|
|
57610
|
+
const doneText = doneMatch ? doneMatch[1].trim() : "";
|
|
57610
57611
|
tasks.push({
|
|
57611
57612
|
name: taskName,
|
|
57612
57613
|
type: taskType,
|
|
57613
57614
|
files,
|
|
57614
57615
|
action: actionMatch ? actionMatch[1].trim() : "",
|
|
57615
57616
|
verify: verifyMatch ? verifyMatch[1].trim() : "",
|
|
57616
|
-
done:
|
|
57617
|
-
completed:
|
|
57617
|
+
done: doneText,
|
|
57618
|
+
completed: /^\[x\]/i.test(doneText)
|
|
57618
57619
|
});
|
|
57619
57620
|
}
|
|
57620
57621
|
plans.push({
|
package/package.json
CHANGED