@devpow112/semantic-release-config 1.0.1 → 1.1.0
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 +4 -7
- package/package.json +4 -4
- package/src/config.js +4 -1
package/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[![License][License Badge]](LICENSE)
|
|
4
4
|
[![Version][Version Badge]][Version Package]
|
|
5
|
-
[![CI][CI Badge]][CI Workflow]
|
|
6
5
|
[![Release][Release Badge]][Release Workflow]
|
|
7
6
|
[![Vulnerabilities][Vulnerabilities Badge]][Vulnerabilities Report]
|
|
8
7
|
[![Node Version][Node Version Badge]](package.json#L35)
|
|
@@ -11,7 +10,7 @@ Shareable semantic release configuration.
|
|
|
11
10
|
|
|
12
11
|
## Installation
|
|
13
12
|
|
|
14
|
-
```
|
|
13
|
+
```console
|
|
15
14
|
npm i -D @devpow112/semantic-release-config
|
|
16
15
|
```
|
|
17
16
|
|
|
@@ -35,7 +34,7 @@ latest LTS version is tested against.
|
|
|
35
34
|
|
|
36
35
|
Install dependencies via `npm`.
|
|
37
36
|
|
|
38
|
-
```
|
|
37
|
+
```console
|
|
39
38
|
npm i
|
|
40
39
|
```
|
|
41
40
|
|
|
@@ -43,7 +42,7 @@ npm i
|
|
|
43
42
|
|
|
44
43
|
Execute linters via `npm`.
|
|
45
44
|
|
|
46
|
-
```
|
|
45
|
+
```console
|
|
47
46
|
# git, javascript and markdown
|
|
48
47
|
npm run lint
|
|
49
48
|
|
|
@@ -61,7 +60,7 @@ npm run lint:md
|
|
|
61
60
|
|
|
62
61
|
Execute formatters via `npm`.
|
|
63
62
|
|
|
64
|
-
```
|
|
63
|
+
```console
|
|
65
64
|
# javascript and markdown
|
|
66
65
|
npm run format
|
|
67
66
|
|
|
@@ -77,8 +76,6 @@ npm run format:md
|
|
|
77
76
|
[Version Badge]: https://img.shields.io/npm/v/@devpow112/semantic-release-config?label=Version
|
|
78
77
|
[Version Package]: https://www.npmjs.com/@devpow112/semantic-release-config
|
|
79
78
|
[Node Version Badge]: https://img.shields.io/node/v/@devpow112/semantic-release-config
|
|
80
|
-
[CI Badge]: https://github.com/devpow112/semantic-release-config/actions/workflows/ci.yml/badge.svg?branch=main
|
|
81
|
-
[CI Workflow]: https://github.com/devpow112/semantic-release-config/actions/workflows/ci.yml?query=branch%3Amain
|
|
82
79
|
[Release Badge]: https://github.com/devpow112/semantic-release-config/actions/workflows/release.yml/badge.svg?branch=main
|
|
83
80
|
[Release Workflow]: https://github.com/devpow112/semantic-release-config/actions/workflows/release.yml?query=branch%3Amain
|
|
84
81
|
[Vulnerabilities Badge]: https://img.shields.io/snyk/vulnerabilities/github/devpow112/semantic-release-config?label=Vulnerabilities
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devpow112/semantic-release-config",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Shareable semantic release configuration",
|
|
5
5
|
"main": "src/config.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"semantic-release": "^19.0.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@commitlint/cli": "^16.1
|
|
44
|
+
"@commitlint/cli": "^16.2.1",
|
|
45
45
|
"@devpow112/commitlint-config": "^1.0.0",
|
|
46
|
-
"@devpow112/eslint-config": "^1.1.
|
|
46
|
+
"@devpow112/eslint-config": "^1.1.2",
|
|
47
47
|
"@semantic-release/git": "^10.0.1",
|
|
48
48
|
"conventional-changelog-conventionalcommits": "^4.6.3",
|
|
49
|
-
"eslint": "^8.
|
|
49
|
+
"eslint": "^8.9.0",
|
|
50
50
|
"markdownlint-cli": "^0.31.1",
|
|
51
51
|
"npm-run-all": "^4.1.5",
|
|
52
52
|
"semantic-release": "^19.0.2"
|
package/src/config.js
CHANGED