Skip to content

Commit 6da7040

Browse files
committed
docs: fix name and url project
1 parent 653bf40 commit 6da7040

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
### Features
55

6-
* first commit ([1ad650d](https://github.com/eclass/template-semantic-release-plugin/commit/1ad650da487ed359cca55cd729ba8264695a43b7))
6+
* first commit ([1ad650d](https://github.com/eclass/semantic-release-ssh-commands/commit/1ad650da487ed359cca55cd729ba8264695a43b7))

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# @eclass/semantic-release-custom-plugin
2-
3-
[![npm](https://img.shields.io/npm/v/@eclass/semantic-release-custom-plugin.svg)](https://www.npmjs.com/package/@eclass/semantic-release-custom-plugin)
4-
[![build](https://img.shields.io/travis/eclass/semantic-release-custom-plugin.svg)](https://travis-ci.org/eclass/semantic-release-custom-plugin)
5-
[![downloads](https://img.shields.io/npm/dt/@eclass/semantic-release-custom-plugin.svg)](https://www.npmjs.com/package/@eclass/semantic-release-custom-plugin)
6-
[![dependencies](https://img.shields.io/david/eclass/semantic-release-custom-plugin.svg)](https://david-dm.org/eclass/semantic-release-custom-plugin)
7-
[![devDependency Status](https://img.shields.io/david/dev/eclass/semantic-release-custom-plugin.svg)](https://david-dm.org/eclass/semantic-release-custom-plugin#info=devDependencies)
8-
[![Coverage Status](https://coveralls.io/repos/github/eclass/semantic-release-custom-plugin/badge.svg?branch=master)](https://coveralls.io/github/eclass/semantic-release-custom-plugin?branch=master)
9-
[![Maintainability](https://api.codeclimate.com/v1/badges/f84f0bcb39c9a5c5fb99/maintainability)](https://codeclimate.com/github/eclass/semantic-release-custom-plugin/maintainability)
1+
# @eclass/semantic-release-ssh-commands
2+
3+
[![npm](https://img.shields.io/npm/v/@eclass/semantic-release-ssh-commands.svg)](https://www.npmjs.com/package/@eclass/semantic-release-ssh-commands)
4+
[![build](https://img.shields.io/travis/eclass/semantic-release-ssh-commands.svg)](https://travis-ci.org/eclass/semantic-release-ssh-commands)
5+
[![downloads](https://img.shields.io/npm/dt/@eclass/semantic-release-ssh-commands.svg)](https://www.npmjs.com/package/@eclass/semantic-release-ssh-commands)
6+
[![dependencies](https://img.shields.io/david/eclass/semantic-release-ssh-commands.svg)](https://david-dm.org/eclass/semantic-release-ssh-commands)
7+
[![devDependency Status](https://img.shields.io/david/dev/eclass/semantic-release-ssh-commands.svg)](https://david-dm.org/eclass/semantic-release-ssh-commands#info=devDependencies)
8+
[![Coverage Status](https://coveralls.io/repos/github/eclass/semantic-release-ssh-commands/badge.svg?branch=master)](https://coveralls.io/github/eclass/semantic-release-ssh-commands?branch=master)
9+
[![Maintainability](https://api.codeclimate.com/v1/badges/f84f0bcb39c9a5c5fb99/maintainability)](https://codeclimate.com/github/eclass/semantic-release-ssh-commands/maintainability)
1010
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
1111

1212
> [semantic-release](https://github.com/semantic-release/semantic-release) plugin to deploy app
@@ -19,7 +19,7 @@
1919
## Install
2020

2121
```bash
22-
npm i -D @eclass/semantic-release-custom-plugin
22+
npm i -D @eclass/semantic-release-ssh-commands
2323
```
2424

2525
## Usage
@@ -33,7 +33,7 @@ The plugin can be configured in the [**semantic-release** configuration file](ht
3333
"@semantic-release/npm",
3434
"@semantic-release/git",
3535
"@semantic-release/gitlab",
36-
"@eclass/semantic-release-custom-plugin"
36+
"@eclass/semantic-release-ssh-commands"
3737
]
3838
}
3939
```
@@ -55,7 +55,7 @@ The plugin can be configured in the [**semantic-release** configuration file](ht
5555
"@semantic-release/npm",
5656
"@semantic-release/git",
5757
"@semantic-release/gitlab",
58-
"@eclass/semantic-release-custom-plugin"
58+
"@eclass/semantic-release-ssh-commands"
5959
]
6060
}
6161
```

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@eclass/semantic-release-custom-plugin",
2+
"name": "@eclass/semantic-release-ssh-commands",
33
"version": "1.0.0",
44
"description": "semantic-release plugin to deploy app",
55
"main": "src/index.js",
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/eclass/template-semantic-release-plugin.git"
16+
"url": "https://github.com/eclass/semantic-release-ssh-commands.git"
1717
},
1818
"keywords": [
1919
"release",
@@ -22,9 +22,9 @@
2222
"author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
2323
"license": "MIT",
2424
"bugs": {
25-
"url": "https://github.com/eclass/template-semantic-release-plugin/issues"
25+
"url": "https://github.com/eclass/semantic-release-ssh-commands/issues"
2626
},
27-
"homepage": "https://github.com/eclass/template-semantic-release-plugin#readme",
27+
"homepage": "https://github.com/eclass/semantic-release-ssh-commands#readme",
2828
"dependencies": {
2929
"@semantic-release/error": "^2.1.0"
3030
},

0 commit comments

Comments
 (0)