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

change gulp for npm tasks in contributing file #617

Merged
merged 1 commit into from
Oct 26, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,34 @@

## Setup

You should have [node.js], [npm] and [gulp] installed.
You should have [node.js] and [npm] installed.

## Linting

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

```bash
$ gulp lint
$ npm run lint
```

## Tests

Tests in node

```bash
$ gulp test:node
$ npm run test:node
```

Tests in the browser

```bash
$ gulp test:browser
$ npm run test:browser
```

## Building browser version

```bash
$ gulp build
$ npm run build
```

## Releases
Expand All @@ -45,15 +45,14 @@ The `release` task will

```bash
# Major release
$ gulp release --major
$ npm run release-major
# Minor relase
$ gulp release --minor
$ npm run release-minor
# Patch release
$ gulp release
$ npm run release
```

[node.js]: https://nodejs.org/
[npm]: http://npmjs.org/
[gulp]: http://gulpjs.com/
[eslint]: http://eslint.org/
[standard]: https://github.com/feross/standard