aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/bumping_version.md4
-rw-r--r--docs/developing-on-deps.md8
-rw-r--r--docs/publishing.md2
3 files changed, 7 insertions, 7 deletions
diff --git a/docs/bumping_version.md b/docs/bumping_version.md
index df38369a2..5b4ca40a6 100644
--- a/docs/bumping_version.md
+++ b/docs/bumping_version.md
@@ -1,7 +1,7 @@
# How to Bump MetaMask's Version Automatically
```
-npm run version:bump patch
+yarn version:bump patch
```
MetaMask publishes using a loose [semver](https://semver.org/) interpretation. We divide the three segments of our version into three types of version bump:
@@ -20,7 +20,7 @@ Means a fix for a bug, or correcting something that should have been assumed to
# Bumping the version
-`npm run version:bump $BUMP_TYPE` where `$BUMP_TYPE` is one of `major`, `minor`, or `patch`.
+`yarn version:bump $BUMP_TYPE` where `$BUMP_TYPE` is one of `major`, `minor`, or `patch`.
This will increment the version in the `app/manifest.json` and `CHANGELOG.md` files according to our current protocol, where the manifest's version is updated, and any line items currently under the changelog's "master" section are now under the new dated version section.
diff --git a/docs/developing-on-deps.md b/docs/developing-on-deps.md
index e2e07cb4e..20c0f7c97 100644
--- a/docs/developing-on-deps.md
+++ b/docs/developing-on-deps.md
@@ -3,7 +3,7 @@
To enjoy the live-reloading that `gulp dev` offers while working on the dependencies:
1. Clone the dependency locally.
- 2. `npm install` in its folder.
- 3. Run `npm link` in its folder.
- 4. Run `npm link $DEP_NAME` in this project folder.
- 5. Next time you `npm start` it will watch the dependency for changes as well!
+ 2. `npm install` or `yarn install` in its folder.
+ 3. Run `yarn link` in its folder.
+ 4. Run `yarn link $DEP_NAME` in this project folder.
+ 5. Next time you `yarn start` it will watch the dependency for changes as well!
diff --git a/docs/publishing.md b/docs/publishing.md
index cc3e5cc3a..17192ee8a 100644
--- a/docs/publishing.md
+++ b/docs/publishing.md
@@ -41,7 +41,7 @@ With each pull request, the @MetaMaskBot will comment with a build of that new p
3. Publish to [firefox addon marketplace](http://addons.mozilla.org/en-us/firefox/addon/ether-metamask).
4. Publish to [Opera store](https://addons.opera.com/en/extensions/details/metamask/).
5. Post on [Github releases](https://github.com/MetaMask/metamask-extension/releases) page.
-6. Run the `npm run announce` script, and post that announcement in our public places.
+6. Run the `yarn announce` script, and post that announcement in our public places.
## Hotfix Differences