@devpow112/semantic-release-config 2.2.0 → 2.2.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 -9
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
[![License][License Badge]](LICENSE)
|
|
4
4
|
[![Version][Version Badge]][Version Package]
|
|
5
5
|
[![Release][Release Badge]][Release Workflow]
|
|
6
|
-
[![Vulnerabilities][Vulnerabilities Badge]][Vulnerabilities Report]
|
|
7
6
|
[![Node Version][Node Version Badge]](package.json#L51)
|
|
8
7
|
|
|
9
8
|
Shareable semantic release configuration.
|
|
@@ -59,22 +58,22 @@ npm run lint:md
|
|
|
59
58
|
npm run lint:pkg
|
|
60
59
|
```
|
|
61
60
|
|
|
62
|
-
###
|
|
61
|
+
### Fixing
|
|
63
62
|
|
|
64
|
-
Execute
|
|
63
|
+
Execute automatic fixers via `npm`.
|
|
65
64
|
|
|
66
65
|
```console
|
|
67
66
|
# javascript, markdown and package.json
|
|
68
|
-
npm run
|
|
67
|
+
npm run fix
|
|
69
68
|
|
|
70
69
|
# javascript only
|
|
71
|
-
npm run
|
|
70
|
+
npm run fix:js
|
|
72
71
|
|
|
73
72
|
# markdown only
|
|
74
|
-
npm run
|
|
73
|
+
npm run fix:md
|
|
75
74
|
|
|
76
75
|
# package.json only
|
|
77
|
-
npm run
|
|
76
|
+
npm run fix:pkg
|
|
78
77
|
```
|
|
79
78
|
|
|
80
79
|
<!-- links -->
|
|
@@ -84,6 +83,4 @@ npm run format:pkg
|
|
|
84
83
|
[Node Version Badge]: https://img.shields.io/node/v/@devpow112/semantic-release-config
|
|
85
84
|
[Release Badge]: https://github.com/devpow112/semantic-release-config/actions/workflows/release.yml/badge.svg?branch=main
|
|
86
85
|
[Release Workflow]: https://github.com/devpow112/semantic-release-config/actions/workflows/release.yml?query=branch%3Amain
|
|
87
|
-
[Vulnerabilities Badge]: https://img.shields.io/snyk/vulnerabilities/github/devpow112/semantic-release-config?label=Vulnerabilities
|
|
88
|
-
[Vulnerabilities Report]: https://snyk.io/test/github/devpow112/semantic-release-config
|
|
89
86
|
[Semantic Release configuration]: https://semantic-release.gitbook.io/semantic-release/usage/shareable-configurations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devpow112/semantic-release-config",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "Shareable semantic release configuration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"semantic-release-config"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/devpow112/semantic-release-config.git"
|
|
14
|
+
"url": "git+https://github.com/devpow112/semantic-release-config.git"
|
|
15
15
|
},
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"author": "Devon Powell <devon.f.powell@gmail.com>",
|
|
@@ -21,34 +21,34 @@
|
|
|
21
21
|
],
|
|
22
22
|
"scripts": {
|
|
23
23
|
"lint": "run-s -s lint:git lint:js lint:md lint:pkg",
|
|
24
|
-
"lint:js": "eslint .",
|
|
25
|
-
"lint:md": "markdownlint .",
|
|
24
|
+
"lint:js": "eslint . --ignore-path .gitignore",
|
|
25
|
+
"lint:md": "markdownlint . --ignore-path .gitignore",
|
|
26
26
|
"lint:git": "commitlint --from origin/main --to HEAD",
|
|
27
27
|
"lint:pkg": "sort-package-json --check",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
28
|
+
"fix": "run-s -s fix:js fix:md fix:pkg",
|
|
29
|
+
"fix:js": "npm run -s lint:js -- --fix",
|
|
30
|
+
"fix:md": "npm run -s lint:md -- --fix",
|
|
31
|
+
"fix:pkg": "npm pkg fix && sort-package-json"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@commitlint/cli": "^17.8.
|
|
34
|
+
"@commitlint/cli": "^17.8.1",
|
|
35
35
|
"@devpow112/commitlint-config": "^2.0.0",
|
|
36
36
|
"@devpow112/eslint-config": "^2.0.1",
|
|
37
37
|
"@semantic-release/git": "^10.0.1",
|
|
38
38
|
"conventional-changelog-conventionalcommits": "^7.0.2",
|
|
39
|
-
"eslint": "^8.
|
|
40
|
-
"markdownlint-cli": "^0.
|
|
39
|
+
"eslint": "^8.56.0",
|
|
40
|
+
"markdownlint-cli": "^0.38.0",
|
|
41
41
|
"npm-run-all": "^4.1.5",
|
|
42
|
-
"semantic-release": "^22.0.
|
|
42
|
+
"semantic-release": "^22.0.12",
|
|
43
43
|
"sort-package-json": "^2.6.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@semantic-release/git": "^10",
|
|
47
47
|
"conventional-changelog-conventionalcommits": "^5",
|
|
48
|
-
"semantic-release": "^
|
|
48
|
+
"semantic-release": "^22"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
|
-
"node": ">=
|
|
51
|
+
"node": ">=20"
|
|
52
52
|
},
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public",
|