Skip to content

update for CR v0.13 #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
update for cr v0.1.3
  • Loading branch information
ShMcK committed Aug 6, 2020
commit 4a35c45acdd725f829d67003c9f2588691621189
11 changes: 7 additions & 4 deletions coderoad.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
version: "0.4.0"
version: "0.4.1"
config:
testRunner:
command: ./node_modules/.bin/mocha
args:
filter: --grep
tap: --reporter=mocha-tap-reporter
setup:
commands:
- npm install
directory: coderoad
setup:
commands:
- cd coderoad && npm install
repo:
uri: https://github.com/coderoad/fcc-learn-npm
branch: v0.4.1
dependencies:
- name: node
version: '>=10'
reset:
commands:
- echo 'resetting'
levels:
- id: '1'
- id: '2'
Expand Down
27 changes: 16 additions & 11 deletions tutorial.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.4.0",
"version": "0.4.1",
"summary": {
"title": "Learn NPM package json",
"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."
Expand All @@ -11,17 +11,17 @@
"filter": "--grep",
"tap": "--reporter=mocha-tap-reporter"
},
"setup": {
"commands": [
"npm install"
],
"commits": [
"1efa2e74255816a138ea9be998d49a6bdfbd082f",
"a99811c863d561190f92b8aac455117407674880"
]
},
"directory": "coderoad"
},
"setup": {
"commands": [
"cd coderoad && npm install"
],
"commits": [
"a99811c863d561190f92b8aac455117407674880",
"1efa2e74255816a138ea9be998d49a6bdfbd082f"
]
},
"repo": {
"uri": "https://github.com/coderoad/fcc-learn-npm",
"branch": "v0.4.1"
Expand All @@ -31,7 +31,12 @@
"name": "node",
"version": ">=10"
}
]
],
"reset": {
"commands": [
"echo 'resetting'"
]
}
},
"levels": [
{
Expand Down