Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit e545562

Browse files
Antonio Tenorio-Fornésdaviddias
Antonio Tenorio-Fornés
authored andcommitted
change gulp for npm tasks in contributing file (#617)
1 parent 58c7a20 commit e545562

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

CONTRIBUTING.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@
22

33
## Setup
44

5-
You should have [node.js], [npm] and [gulp] installed.
5+
You should have [node.js] and [npm] installed.
66

77
## Linting
88

99
Linting is done using [eslint] and the rules are based on [standard].
1010

1111
```bash
12-
$ gulp lint
12+
$ npm run lint
1313
```
1414

1515
## Tests
1616

1717
Tests in node
1818

1919
```bash
20-
$ gulp test:node
20+
$ npm run test:node
2121
```
2222

2323
Tests in the browser
2424

2525
```bash
26-
$ gulp test:browser
26+
$ npm run test:browser
2727
```
2828

2929
## Building browser version
3030

3131
```bash
32-
$ gulp build
32+
$ npm run build
3333
```
3434

3535
## Releases
@@ -45,15 +45,14 @@ The `release` task will
4545

4646
```bash
4747
# Major release
48-
$ gulp release --major
48+
$ npm run release-major
4949
# Minor relase
50-
$ gulp release --minor
50+
$ npm run release-minor
5151
# Patch release
52-
$ gulp release
52+
$ npm run release
5353
```
5454

5555
[node.js]: https://nodejs.org/
5656
[npm]: http://npmjs.org/
57-
[gulp]: http://gulpjs.com/
5857
[eslint]: http://eslint.org/
5958
[standard]: https://github.com/feross/standard

0 commit comments

Comments
 (0)