chore: add build status from travis (#4)

This commit is contained in:
mrugesh mohapatra
2018-06-09 04:38:09 +05:30
committed by GitHub
parent aa131b94d6
commit 95b5c479fc

View File

@ -1,5 +1,7 @@
## freeCodeCamp Curriculum ## freeCodeCamp Curriculum
[![Build Status](https://travis-ci.org/freeCodeCamp/curriculum.svg?branch=master)](https://travis-ci.org/freeCodeCamp/curriculum)
This package contains the "seed" files used in the freeCodeCamp Curriculum. This package contains the "seed" files used in the freeCodeCamp Curriculum.
### Installation ### Installation
@ -20,7 +22,7 @@ getChallenges() // will provide an array of blocks i.e. basic CSS, functional pr
``` ```
#### `block` Structure #### `block` Structure
```json ```js
{ {
"name": "ES6", "name": "ES6",
"order": 2, "order": 2,
@ -35,7 +37,7 @@ getChallenges() // will provide an array of blocks i.e. basic CSS, functional pr
#### `challenge` Structure #### `challenge` Structure
```json ```js
{ {
"id": "ObjectId()", "id": "ObjectId()",
"title": "Declare a Read-Only Variable with the const Keyword", "title": "Declare a Read-Only Variable with the const Keyword",
@ -70,4 +72,3 @@ getChallenges() // will provide an array of blocks i.e. basic CSS, functional pr
} }
}, },
``` ```