Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make step solution optional
Signed-off-by: shmck <shawn.j.mckay@gmail.com>
  • Loading branch information
ShMcK committed Jun 21, 2020
commit 791212e416c810f944bfa3cec290b32accbe1322
2 changes: 1 addition & 1 deletion src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async function build(args: string[]) {
try {
const valid = validateSchema(skeletonSchema, skeleton);
if (!valid) {
console.error("Tutorial validation failed. See above to see what to fix");
console.error("Skeleton validation failed. See above to see what to fix");
return;
}
} catch (e) {
Expand Down
2 changes: 1 addition & 1 deletion src/schema/tutorial.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export default {
examples: ["Have you tried doing X?"],
},
},
required: ["content", "setup", "solution"],
required: ["content", "setup"],
},
},
},
Expand Down