docs: corrections and further clarifications
- (correction) removed comments from code samples. -(correction) remove recommendation for global install on CI environemnts. - Synched README.md and SUMMARY.md
This commit is contained in:
		
							parent
							
								
									5a5eaec3da
								
							
						
					
					
						commit
						7cb5446bb5
					
				@ -93,15 +93,15 @@ After running the tests, the command `semantic-release` will execute the followi
 | 
			
		||||
## Documentation
 | 
			
		||||
 | 
			
		||||
- Usage
 | 
			
		||||
  - [Getting started](docs/01-usage/01-getting-started.md)
 | 
			
		||||
  - [Getting started](docs/01-usage/getting-started.md)
 | 
			
		||||
  - [Installation](docs/01-usage/installation.md#installation)
 | 
			
		||||
  - [CI Configuration](docs/01-usage/ci-configuration.md#ci-configuration)
 | 
			
		||||
  - [Configuration](docs/01-usage/configuration.md#configuration)
 | 
			
		||||
  - [Plugins](docs/01-usage/plugins.md)
 | 
			
		||||
  - [Shareable configurations](docs/01-usage/shareable-configurations.md)
 | 
			
		||||
- Extending
 | 
			
		||||
  - [Plugins](docs/02-extending/plugins-list.md)
 | 
			
		||||
  - [Shareable configuration](docs/02-extending/shareable-configurations-list.md)
 | 
			
		||||
  - [Available plugins](docs/02-extending/plugins-list.md)
 | 
			
		||||
  - [Available shareable configuration](docs/02-extending/shareable-configurations-list.md)
 | 
			
		||||
- Recipes
 | 
			
		||||
  - [CI pipelines recipes](docs/03-recipes/ci-pipelines-recipes.md)
 | 
			
		||||
    - [CircleCI 2.0 workflows](docs/03-recipes/circleci-workflows.md)
 | 
			
		||||
 | 
			
		||||
@ -9,8 +9,8 @@
 | 
			
		||||
- [Shareable configurations](docs/01-usage/shareable-configurations.md)
 | 
			
		||||
 | 
			
		||||
## Extensions
 | 
			
		||||
- [Plugins](docs/02-extending/plugins-list.md)
 | 
			
		||||
- [Shareable configuration](docs/02-extending/shareable-configurations-list.md)
 | 
			
		||||
- [Available plugins](docs/02-extending/plugins-list.md)
 | 
			
		||||
- [Available shareable configuration](docs/02-extending/shareable-configurations-list.md)
 | 
			
		||||
 | 
			
		||||
## Recipes
 | 
			
		||||
- [CI pipelines recipes](docs/03-recipes/ci-pipelines-recipes.md)
 | 
			
		||||
 | 
			
		||||
@ -154,7 +154,7 @@ Example (`.releaserc` file content):
 | 
			
		||||
    "@semantic-release/release-notes-generator",
 | 
			
		||||
    "@semantic-release-docker",
 | 
			
		||||
    ["@semantic-release/exec", {
 | 
			
		||||
      "verifyConditionsCmd": "./verify.sh"    # plugin configuration
 | 
			
		||||
      "verifyConditionsCmd": "./verify.sh"
 | 
			
		||||
    }],
 | 
			
		||||
    "@semantic-release/git",
 | 
			
		||||
    "@semantic-release/gitlab",
 | 
			
		||||
 | 
			
		||||
@ -18,12 +18,5 @@ $ npx semantic-release
 | 
			
		||||
 | 
			
		||||
## Global installation
 | 
			
		||||
 | 
			
		||||
For other type of projects we recommend installing **semantic-release** directly in the CI environment, also with [npx](https://www.npmjs.com/package/npx):
 | 
			
		||||
> **Note:** For a global installation is no longer recommended. Please use local installation and `npx` instead.
 | 
			
		||||
 | 
			
		||||
```bash
 | 
			
		||||
$ npx semantic-release
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
> **Note:** For a global installation, it's recommended to specify the major **semantic-release** version to install (for example with with `npx semantic-release@15`, or `npm install -g semantic-release@15`). This way your build will not automatically use the next major **semantic-release** release that could possibly break your build. You will have to upgrade manually when a new major version is released.
 | 
			
		||||
 | 
			
		||||
> **Note:** `npx` is a tool bundled with `npm@>=5.2.0`. It is used to conveniently install the semantic-release binary and to execute it. See [What is npx](../05-support/FAQ.md#what-is-npx) for more details.
 | 
			
		||||
 | 
			
		||||
@ -75,11 +75,11 @@ Global plugin options can defined at the root of the **semantic-release** config
 | 
			
		||||
    "@semantic-release/commit-analyzer",
 | 
			
		||||
    "@semantic-release/release-notes-generator",
 | 
			
		||||
    ["@semantic-release/github", {
 | 
			
		||||
      "assets": ["dist/**"]                # plugin configuration
 | 
			
		||||
      "assets": ["dist/**"]
 | 
			
		||||
      }],
 | 
			
		||||
    "@semantic-release/git"
 | 
			
		||||
  ],
 | 
			
		||||
  "preset": "angular"                      # option passed to all plugins
 | 
			
		||||
  "preset": "angular"
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
# Shareable configurations
 | 
			
		||||
 | 
			
		||||
A shareable configuration is an [npm](https://www.npmjs.com/) package that exports a **semantic-release** configuration object. It allows for use of the same configuration across several projects.
 | 
			
		||||
A shareable configuration is an npm package that exports a **semantic-release** configuration object. It allows for use of the same configuration across several projects.
 | 
			
		||||
 | 
			
		||||
The shareable configurations to use can be set with the [extends](configuration.md#extends) option.
 | 
			
		||||
Shareable configurations to be use can be declared with the [`extends` option](configuration.md#extends).
 | 
			
		||||
 | 
			
		||||
See [shareable configurations list](../02-extending/shareable-configurations-list.md).
 | 
			
		||||
See [shareable configurations list](../02-extending/shareable-configurations-list.md) for examples.
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
# CI configurations
 | 
			
		||||
# CI pipelines recipes
 | 
			
		||||
- [CircleCI 2.0 workflows](circleci-workflows.md)
 | 
			
		||||
- [Travis CI](travis.md)
 | 
			
		||||
- [GitLab CI](gitlab-ci.md)
 | 
			
		||||
@ -1,12 +1,2 @@
 | 
			
		||||
# Recipes
 | 
			
		||||
 | 
			
		||||
## CI configurations
 | 
			
		||||
- [CircleCI 2.0 workflows](circleci-workflows.md)
 | 
			
		||||
- [Travis CI](travis.md)
 | 
			
		||||
- [GitLab CI](gitlab-ci.md)
 | 
			
		||||
 | 
			
		||||
## Git hosted services
 | 
			
		||||
# Git hosted services
 | 
			
		||||
- [Git authentication with SSH keys](git-auth-ssh-keys.md)
 | 
			
		||||
 | 
			
		||||
## Package managers and languages (to be completed)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user