From 428bbee119567062aa99549cf8e22b6968510f77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Tenorio=20Forn=C3=A9s?= Date: Tue, 24 Oct 2017 13:12:04 +0200 Subject: [PATCH] change gulp for npm tasks in contributing file --- CONTRIBUTING.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9c8675986..33fe54e07 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,14 +2,14 @@ ## 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 @@ -17,19 +17,19 @@ $ gulp lint 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 @@ -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