Browse Source
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
vanilla_orig
Matias Capeletto
3 years ago
No account linked to committer's email address
|
@@ -5,7 +5,7 @@
|
5
|
5
|
### Option 1 - Manual
|
6
|
6
|
|
7
|
7
|
1. Fork and clone the repo
|
8
|
|
-1. Run `npm install` to install dependencies
|
|
8
|
+1. Run `yarn` to install dependencies
|
9
|
9
|
1. Create a branch for your PR with `git checkout -b your-branch-name`
|
10
|
10
|
|
11
|
11
|
> To keep `master` branch pointing to remote repository and make pull requests from branches on your fork. To do this, run:
|
|
@@ -57,6 +57,6 @@
|
57
|
57
|
"scripts": {
|
58
|
58
|
"build:umd": "cross-env NODE_ENV=production webpack --config webpack.prod.config.js",
|
59
|
59
|
"build:umd:withAnalyzer": "cross-env NODE_ENV=production ANALYZER=true webpack --config webpack.prod.config.js",
|
60
|
|
- "pack": "yarn build:umd && npm pack"
|
|
60
|
+ "pack": "yarn build:umd && yarn pack"
|
61
|
61
|
}
|
62
|
62
|
}
|