semantic-release-openapi 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# semantic-release-openapi
|
2
2
|
|
3
|
-
[][npm]
|
4
|
+
[][npm]
|
5
5
|
[](https://github.com/aensley/semantic-release-openapi/blob/main/LICENSE)
|
6
6
|
[](https://standardjs.com)
|
7
7
|
[](https://prettier.io)
|
@@ -9,7 +9,7 @@
|
|
9
9
|
[](https://github.com/aensley/semantic-release-openapi/actions/workflows/ci.yml)
|
10
10
|
[](https://codeclimate.com/github/aensley/semantic-release-openapi/maintainability)
|
11
11
|
[](https://codeclimate.com/github/aensley/semantic-release-openapi/test_coverage)
|
12
|
-
[][npm]
|
13
13
|
|
14
14
|
A Semantic Release plugin to update versions in OpenAPI / Swagger specification files.
|
15
15
|
|
@@ -18,7 +18,7 @@ A Semantic Release plugin to update versions in OpenAPI / Swagger specification
|
|
18
18
|
This module is distributed via npm and should be installed as one of your project's `devDependencies`:
|
19
19
|
|
20
20
|
```bash
|
21
|
-
npm install --save-dev
|
21
|
+
npm install --save-dev semantic-release-openapi
|
22
22
|
```
|
23
23
|
|
24
24
|
## Usage
|
@@ -42,7 +42,7 @@ This plugin has one configuration option which must be supplied.
|
|
42
42
|
"release": {
|
43
43
|
"plugins": [
|
44
44
|
[
|
45
|
-
"
|
45
|
+
"semantic-release-openapi",
|
46
46
|
{
|
47
47
|
"apiSpecFiles": ["openapi.yaml", "src/swagger-*.json"]
|
48
48
|
}
|
@@ -58,4 +58,4 @@ This plugin has one configuration option which must be supplied.
|
|
58
58
|
}
|
59
59
|
```
|
60
60
|
|
61
|
-
[npm]: https://www.npmjs.com/package
|
61
|
+
[npm]: https://www.npmjs.com/package/semantic-release-openapi
|