busy-cli 0.1.3 → 0.2.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.
|
@@ -230,7 +230,7 @@ function createOperation(section, docId, filePath) {
|
|
|
230
230
|
const id = `${docId}::${slug}`; // Use :: for concept IDs
|
|
231
231
|
// Parse steps and checklist from content
|
|
232
232
|
const { steps, checklist } = parseOperationContent(section);
|
|
233
|
-
// Get extends from section heading (e.g., ## [ValidateInput][
|
|
233
|
+
// Get extends from section heading (e.g., ## [ValidateInput][SomeType])
|
|
234
234
|
const extends_ = getSectionExtends(section.id);
|
|
235
235
|
return {
|
|
236
236
|
kind: 'operation',
|
package/package.json
CHANGED
|
@@ -303,7 +303,7 @@ function createOperation(
|
|
|
303
303
|
// Parse steps and checklist from content
|
|
304
304
|
const { steps, checklist } = parseOperationContent(section);
|
|
305
305
|
|
|
306
|
-
// Get extends from section heading (e.g., ## [ValidateInput][
|
|
306
|
+
// Get extends from section heading (e.g., ## [ValidateInput][SomeType])
|
|
307
307
|
const extends_ = getSectionExtends(section.id);
|
|
308
308
|
|
|
309
309
|
return {
|