mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
Update install.md (#4611)
* Update install.md replaced --location=global with -g * dev: replace all npm install --location with npm install -g
This commit is contained in:
parent
6a83040351
commit
3293c9a281
4 changed files with 7 additions and 7 deletions
|
@ -43,7 +43,7 @@ Google Cloud Storage** or create your own plugin.
|
|||
Install with npm:
|
||||
|
||||
```bash
|
||||
npm install --location=global verdaccio@next
|
||||
npm install -g verdaccio@next
|
||||
```
|
||||
|
||||
With `yarn`
|
||||
|
@ -79,8 +79,8 @@ Furthermore, you can read the [**Debugging Guidelines**](https://github.com/verd
|
|||
You can develop your own [plugins](https://verdaccio.org/docs/plugins) with the [verdaccio generator](https://github.com/verdaccio/generator-verdaccio-plugin). Installing [Yeoman](https://yeoman.io/) is required.
|
||||
|
||||
```
|
||||
npm install --location=global yo
|
||||
npm install --location=global generator-verdaccio-plugin
|
||||
npm install -g yo
|
||||
npm install -g generator-verdaccio-plugin
|
||||
```
|
||||
|
||||
Learn more [here](https://verdaccio.org/docs/dev-plugins) how to develop plugins. Share your plugins with the community.
|
||||
|
|
|
@ -32,7 +32,7 @@ Learn the basics before getting started, how to install, where is the location o
|
|||
Using `npm`
|
||||
|
||||
```bash
|
||||
npm install --location=global verdaccio@next-7
|
||||
npm install -g verdaccio@next-7
|
||||
```
|
||||
|
||||
or using `yarn@1.x` _classic_,
|
||||
|
|
|
@ -34,7 +34,7 @@ Learn the basics before getting started, how to install, where is the location o
|
|||
Using `npm`
|
||||
|
||||
```bash
|
||||
npm install --location=global verdaccio
|
||||
npm install -g verdaccio
|
||||
```
|
||||
|
||||
or using `yarn`
|
||||
|
@ -56,7 +56,7 @@ pnpm install -g verdaccio
|
|||
Next [major release is under development](https://github.com/verdaccio/verdaccio/discussions/2970), byt can try it out already, either for testing purposes or helping to catch any possible bug, if you find something report it under the label [6.x bugs](https://github.com/verdaccio/verdaccio/labels/6.x%20bugs).
|
||||
|
||||
```bash
|
||||
npm install --location=global verdaccio@7-next
|
||||
npm install -g verdaccio@7-next
|
||||
```
|
||||
|
||||
or with the docker image
|
||||
|
|
|
@ -32,7 +32,7 @@ Learn the basics before getting started, how to install, where is the location o
|
|||
Using `npm`
|
||||
|
||||
```bash
|
||||
npm install --location=global verdaccio@latest-6
|
||||
npm install -g verdaccio@latest-6
|
||||
```
|
||||
|
||||
or using `yarn@1.x` _classic_,
|
||||
|
|
Loading…
Reference in a new issue