From 0e3eb3cc634bcd8fe561579a42cc16c40f4eea9f Mon Sep 17 00:00:00 2001 From: Matias Capeletto Date: Thu, 18 Mar 2021 18:27:00 +0100 Subject: [PATCH] chore: fix npm to yarn in contributing.md and package.json (#3274) * chore: fix npm to yarn in contributing.md * chore: fix npm pack to yarn pack --- CONTRIBUTING.md | 2 +- src/packages/utils/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 611dc5c16..b3a5c325c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ ### Option 1 - Manual 1. Fork and clone the repo -1. Run `npm install` to install dependencies +1. Run `yarn` to install dependencies 1. Create a branch for your PR with `git checkout -b your-branch-name` > To keep `master` branch pointing to remote repository and make pull requests from branches on your fork. To do this, run: diff --git a/src/packages/utils/package.json b/src/packages/utils/package.json index 092463a61..b19e21aad 100644 --- a/src/packages/utils/package.json +++ b/src/packages/utils/package.json @@ -57,6 +57,6 @@ "scripts": { "build:umd": "cross-env NODE_ENV=production webpack --config webpack.prod.config.js", "build:umd:withAnalyzer": "cross-env NODE_ENV=production ANALYZER=true webpack --config webpack.prod.config.js", - "pack": "yarn build:umd && npm pack" + "pack": "yarn build:umd && yarn pack" } }