Skip to content

Commit a539936

Browse files
authored
chore(release): releasing with latest updates (freeCodeCamp#11)
1 parent 4d8a913 commit a539936

File tree

5 files changed

+2078
-871
lines changed

5 files changed

+2078
-871
lines changed

Diff for: .travis.yml

+20-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,27 @@ node_js:
55

66
cache:
77
directories:
8+
- ~/.npm
89
- node_modules
10+
11+
notifications:
12+
email:
13+
on_success: change
14+
on_failure: always
15+
916
script:
1017
- npm run lint
1118
- npm run test
12-
sudo: false
19+
- npm run build
20+
21+
deploy:
22+
provider: script
23+
skip_cleanup: true
24+
script:
25+
- npx semantic-release
26+
27+
branches:
28+
except:
29+
- /^v\d+\.\d+\.\d+$/
30+
31+
sudo: false

Diff for: README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,28 @@
1-
## freeCodeCamp Curriculum
1+
# freeCodeCamp Curriculum
22

3-
[![Build Status](https://travis-ci.org/freeCodeCamp/curriculum.svg?branch=master)](https://travis-ci.org/freeCodeCamp/curriculum)
3+
[![Build Status](https://travis-ci.org/freeCodeCamp/curriculum.svg?branch=master)](https://travis-ci.org/freeCodeCamp/curriculum) [![npm (scoped)](https://img.shields.io/npm/v/@freecodecamp/curriculum.svg)](https://www.npmjs.com/package/@freecodecamp/curriculum)
44

5-
This package contains the "seed" files used in the freeCodeCamp Curriculum.
5+
> This package contains the "seed" files used in the freeCodeCamp Curriculum.
66
7-
### Installation
7+
## Installation
88

99
```sh
1010
npm i @freecodecamp/curriculum
1111
# or
1212
yarn add @freecodecamp/curriculum
1313
```
1414

15-
### Usage
15+
## Usage
1616

1717
```js
1818
import { getChallenges } from '@freecodecamp/curriculum';
1919

20-
getChallenges() // will provide an array of blocks i.e. basic CSS, functional programming
21-
20+
// fetch an array of blocks
21+
// i.e. basic CSS, functional programming, etc.
22+
getChallenges()
2223
```
23-
#### `block` Structure
24+
25+
### `block` Structure
2426

2527
```js
2628
{
@@ -35,7 +37,7 @@ getChallenges() // will provide an array of blocks i.e. basic CSS, functional pr
3537
}
3638
```
3739

38-
#### `challenge` Structure
40+
### `challenge` Structure
3941

4042
```js
4143
{

0 commit comments

Comments
 (0)