Skip to content

Commit 6cf4a82

Browse files
committed
chore: bump madwizard to 0.8.10
1 parent 7384849 commit 6cf4a82

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/plugin-madwizard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"madwizard": "^0.8.7"
26+
"madwizard": "^0.8.10"
2727
}
2828
}

tests/plugin-madwizard/plan/inputs/1.spec.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const importa: (name?: string) => Tree = (name = "importa.md") => ({ name, child
2121

2222
const importc: Tree = { name: "importc.md", children: [{ name: "echo CCC" }] }
2323

24-
// const option2Tab2: Tree = { name: 'Option 2: Tab2', children: [importc] }
24+
const option2Tab2: Tree = { name: 'Option 2: Tab2', children: [importc] }
2525

2626
const importe: Tree = { name: "EEE", children: [{ name: "Option 1: TabE1", children: [{ name: "echo EEE" }] }] }
2727

@@ -38,9 +38,17 @@ const prerequisites = {
3838
children: [importe, importd],
3939
}
4040

41+
const mainTasks = {
42+
name: "Main Tasks",
43+
children: [option2Tab2],
44+
}
45+
4146
const IN1: Input = {
4247
input: "guidebook-tree-model1.md",
43-
tree: () => [prerequisites],
48+
tree: () => [{
49+
name: 'AAA',
50+
children: [prerequisites, mainTasks],
51+
}]
4452
}
4553

4654
export { importa, importc, importe, importd }

0 commit comments

Comments
 (0)