Skip to content

Commit 58a1d99

Browse files
committed
Revert "fix: bump to madwizard 0.23.4 to pick up 'validate' invalidation fixes"
This reverts commit 00990bc.
1 parent 00990bc commit 58a1d99

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

Diff for: bin/codeflare

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ trap 'pkill -P $$; exit 1;' TERM INT
143143

144144
# otherwise, we launch the UI version
145145
export CODEFLARE_HEADLESS=$HEADLESS
146-
"$NODE" "$HEADLESS"/codeflare.min.js -- ${CMD-codeflare} $EXTRAPREFIX "$@"
146+
"$NODE" "$HEADLESS"/codeflare.min.js -- codeflare $EXTRAPREFIX "$@"

Diff for: package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: plugins/plugin-madwizard/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"madwizard": "^0.23.4",
26+
"madwizard": "^0.23.1",
2727
"@guidebooks/store": "^0.12.6"
2828
}
2929
}

Diff for: tests/plugin-madwizard/plan/inputs/1.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const importd: Tree = {
3535

3636
const prerequisites = {
3737
name: "Prerequisites",
38-
children: [importa(), importe, importd],
38+
children: [importe, importd],
3939
}
4040

4141
const mainTasks = {

Diff for: tests/plugin-madwizard/plan/inputs/2.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import doPlan from "../plan"
1818
import Input, { Tree } from "../Input"
19-
import { importa, importe, importd } from "./1.spec"
19+
import { importe, importd } from "./1.spec"
2020

2121
const snippetsInTab4: Tree = {
2222
name: "snippets-in-tab4.md",
@@ -28,7 +28,7 @@ const snippetsInTab4: Tree = {
2828

2929
const prerequisites = {
3030
name: "Prerequisites",
31-
children: [importa(), importe],
31+
children: [importe],
3232
}
3333

3434
const mainTasks = {

Diff for: tests/plugin-madwizard/plan/inputs/3.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import doPlan from "../plan"
1818
import Input, { Tree } from "../Input"
19-
import { importa, importe, importd } from "./1.spec"
19+
import { importe, importd } from "./1.spec"
2020

2121
const snippetsInTab5: Tree = {
2222
name: "snippets-in-tab5.md",
@@ -29,7 +29,7 @@ const snippetsInTab5: Tree = {
2929

3030
const prerequisites = {
3131
name: "Prerequisites",
32-
children: [importa(), importe],
32+
children: [importe],
3333
}
3434

3535
const mainTasks = {

Diff for: tests/plugin-madwizard/plan/inputs/4.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import doPlan from "../plan"
1818
import Input, { Tree } from "../Input"
19-
import { importa, importe, importd } from "./1.spec"
19+
import { importe, importd } from "./1.spec"
2020

2121
const snippetsInTab5: Tree = {
2222
name: "AAA",
@@ -30,7 +30,7 @@ const IN4: Input = {
3030
tree: () => [
3131
{
3232
name: "Sequence",
33-
children: [importd, importa(), importe, snippetsInTab5],
33+
children: [importd, importe, snippetsInTab5],
3434
},
3535
],
3636
}

Diff for: tests/plugin-madwizard/plan/inputs/6.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import doPlan from "../plan"
1818
import Input, { Tree } from "../Input"
19-
import { importa, importd } from "./1.spec"
19+
import { importd } from "./1.spec"
2020

2121
const filename = "guidebook-tree-model6.md"
2222

@@ -49,7 +49,7 @@ export const importg: (name?: string) => Tree = (name = "importg.md") =>
4949
const tree: Input["tree"] = () => [
5050
{
5151
name: "Sequence",
52-
children: [importg(), importa(), importd],
52+
children: [importg(), importd],
5353
},
5454
]
5555

Diff for: tests/plugin-madwizard/plan/inputs/7.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
import doPlan from "../plan"
1818
import Input from "../Input"
1919
import { importg } from "./6.spec"
20-
import { importa, importd } from "./1.spec"
20+
import { importd } from "./1.spec"
2121

2222
const filename = "guidebook-tree-model7.md"
2323

2424
export const tree: Input["tree"] = () => [
2525
{
2626
name: "Sequence",
27-
children: [importg("importgg.md"), importa("importaa.md"), importd],
27+
children: [importg("importgg.md"), importd],
2828
},
2929
]
3030

0 commit comments

Comments
 (0)