From a12157218a90442113be8217cb0bcd8b45243997 Mon Sep 17 00:00:00 2001 From: Jeff Avallone Date: Sat, 29 Jul 2017 17:23:08 -0400 Subject: [PATCH] Replacing NPM with yarn in docs and build --- .travis.yml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 361ff3d..780472c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,4 +5,4 @@ before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 -script: npm test +script: yarn test diff --git a/README.md b/README.md index 17682f7..608bd17 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@ Node is required for working with this site. To start with, install the necessary dependencies: - $ npm install + $ yarn install To start a development server, run: - $ npm start + $ yarn start This will build the site into the ./build directory, start a local start on port 8080, and begin watching the source files for modifications. The site will automatically be rebuilt when files are changed. Also, if you browser has the LiveReload extension, then the page will be reloaded. @@ -26,7 +26,7 @@ These other gulp tasks are available: $ gulp docs # Build documentation into the ./docs directory $ gulp build # Build the site into the ./build directory - $ npm test # Run JSCS lint and Karma tests + $ yarn test # Run JSCS lint and Karma tests ## License