Skip to content

Commit 04ec8c6

Browse files
authored
Merge pull request #5 from coderoad/next
update for CR v0.13
2 parents 969bb9b + 4a35c45 commit 04ec8c6

File tree

2 files changed

+23
-15
lines changed

2 files changed

+23
-15
lines changed

coderoad.yaml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
1-
version: "0.4.0"
1+
version: "0.4.1"
22
config:
33
testRunner:
44
command: ./node_modules/.bin/mocha
55
args:
66
filter: --grep
77
tap: --reporter=mocha-tap-reporter
8-
setup:
9-
commands:
10-
- npm install
118
directory: coderoad
9+
setup:
10+
commands:
11+
- cd coderoad && npm install
1212
repo:
1313
uri: https://github.com/coderoad/fcc-learn-npm
1414
branch: v0.4.1
1515
dependencies:
1616
- name: node
1717
version: '>=10'
18+
reset:
19+
commands:
20+
- echo 'resetting'
1821
levels:
1922
- id: '1'
2023
- id: '2'

tutorial.json

+16-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.4.0",
2+
"version": "0.4.1",
33
"summary": {
44
"title": "Learn NPM package json",
55
"description": "The Node Package Manager (NPM) is a command-line tool used by developers to share and control modules (or packages) of JavaScript code written for use with Node.js."
@@ -11,17 +11,17 @@
1111
"filter": "--grep",
1212
"tap": "--reporter=mocha-tap-reporter"
1313
},
14-
"setup": {
15-
"commands": [
16-
"npm install"
17-
],
18-
"commits": [
19-
"1efa2e74255816a138ea9be998d49a6bdfbd082f",
20-
"a99811c863d561190f92b8aac455117407674880"
21-
]
22-
},
2314
"directory": "coderoad"
2415
},
16+
"setup": {
17+
"commands": [
18+
"cd coderoad && npm install"
19+
],
20+
"commits": [
21+
"a99811c863d561190f92b8aac455117407674880",
22+
"1efa2e74255816a138ea9be998d49a6bdfbd082f"
23+
]
24+
},
2525
"repo": {
2626
"uri": "https://github.com/coderoad/fcc-learn-npm",
2727
"branch": "v0.4.1"
@@ -31,7 +31,12 @@
3131
"name": "node",
3232
"version": ">=10"
3333
}
34-
]
34+
],
35+
"reset": {
36+
"commands": [
37+
"echo 'resetting'"
38+
]
39+
}
3540
},
3641
"levels": [
3742
{

0 commit comments

Comments
 (0)