Skip to content

Commit b350922

Browse files
committed
chore: update to madwizard 0.9.0
This includes the breaking change from madwizard: guidebook relative imports now need to use a `./` or `../` prefix to indicate that they are relative (rather than store-absolute) references.
1 parent df1bc3a commit b350922

27 files changed

+158
-60
lines changed

package-lock.json

Lines changed: 106 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.12"
26+
"madwizard": "^0.9.0"
2727
}
2828
}

tests/plugin-madwizard/markdowns/guidebook-tree-model1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
imports:
3-
- snippets-in-tab3.md
3+
- ./snippets/snippets-in-tab3.md
44
---
55

66
<!-- You should see a tree view. This is the Imports.tsx component -->

tests/plugin-madwizard/markdowns/guidebook-tree-model2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
imports:
3-
- snippets-in-tab4.md
3+
- ./snippets/snippets-in-tab4.md
44
---
55

66
<!-- You should see a tree view. This is the Imports.tsx component -->

tests/plugin-madwizard/markdowns/guidebook-tree-model3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
imports:
3-
- snippets-in-tab5.md
3+
- ./snippets/snippets-in-tab5.md
44
---
55

66
<!-- You should see a tree view. This is the Imports.tsx component -->

tests/plugin-madwizard/markdowns/guidebook-tree-model4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
imports:
3-
- importd.md
4-
- snippets-in-tab5.md
3+
- ./snippets/importd.md
4+
- ./snippets/snippets-in-tab5.md
55
---
66

77
<!-- You should see a tree view. This is the Imports.tsx component -->
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
imports:
3-
- snippets-in-tab6.md
3+
- ./snippets/snippets-in-tab6.md
44
---
55

66
::imports
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
imports:
3-
- importg.md
4-
- importa.md
5-
- importd.md
3+
- ./snippets/importg.md
4+
- ./snippets/importa.md
5+
- ./snippets/importd.md
66
---
77

88
::imports
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
imports:
3-
- importgg.md
4-
- importaa.md
5-
- importdd.md
3+
- ./snippets/importgg.md
4+
- ./snippets/importaa.md
5+
- ./snippets/importdd.md
66
---
77

88
::imports
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{% include "importa.md" %}
1+
{% include "./importa.md" %}

0 commit comments

Comments
 (0)