-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial.json
67 lines (67 loc) · 1.47 KB
/
tutorial.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"version": "0.1.0",
"summary": {
"title": "Subtask Demo",
"description": "A demo demonstrating how to use subtasks"
},
"config": {
"testRunner": {
"command": "./node_modules/.bin/mocha",
"args": {
"filter": "--grep",
"tap": "--reporter=mocha-tap-reporter"
},
"directory": ".coderoad"
},
"setup": {
"commands": [
"cd .coderoad && npm install"
],
"commits": [
"6823241497effb41f5924bc28313b968fead8cae"
]
},
"repo": {
"uri": "https://github.com/shmck/coderoad-tutorial-subtask-demo",
"branch": "v0.2.0"
},
"dependencies": [
{
"name": "node",
"version": ">=10"
}
]
},
"levels": [
{
"id": "1",
"title": "Subtask Example",
"summary": "A subtask example",
"content": "A subtask example",
"steps": [
{
"id": "1.1",
"setup": {
"files": [
"src/add.js"
],
"commits": [
"8caced06ea67be8ab7cd805ebdfb767aae6b9724"
]
},
"content": "Create a function `add` that can take a variety of params.",
"subtasks": [
"Add one number",
"Add two numbers",
"Add three numbers"
],
"solution": {
"commits": [
"1676d257a5e955ec8064dc5c5f5d6b6bde9e5b4a"
]
}
}
]
}
]
}