@semantic-release/release-notes-generator 9.0.1 → 9.0.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 +1 -5
- package/package.json +28 -21
package/README.md
CHANGED
|
@@ -2,11 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[**semantic-release**](https://github.com/semantic-release/semantic-release) plugin to generate changelog content with [conventional-changelog](https://github.com/conventional-changelog/conventional-changelog)
|
|
4
4
|
|
|
5
|
-
[](https://codecov.io/gh/semantic-release/release-notes-generator)
|
|
7
|
-
[](https://greenkeeper.io/)
|
|
8
|
-
|
|
9
|
-
[](https://www.npmjs.com/package/@semantic-release/release-notes-generator)
|
|
5
|
+
[](https://github.com/semantic-release/release-notes-generator/actions?query=workflow%3ATest+branch%3Amaster) [](https://www.npmjs.com/package/@semantic-release/release-notes-generator)
|
|
10
6
|
[](https://www.npmjs.com/package/@semantic-release/release-notes-generator)
|
|
11
7
|
|
|
12
8
|
| Step | Description |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semantic-release/release-notes-generator",
|
|
3
3
|
"description": "semantic-release plugin to generate changelog content with conventional-changelog",
|
|
4
|
-
"version": "9.0.
|
|
4
|
+
"version": "9.0.2",
|
|
5
5
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/semantic-release/release-notes-generator/issues"
|
|
@@ -18,27 +18,26 @@
|
|
|
18
18
|
"debug": "^4.0.0",
|
|
19
19
|
"get-stream": "^5.0.0",
|
|
20
20
|
"import-from": "^3.0.0",
|
|
21
|
-
"into-stream": "^
|
|
21
|
+
"into-stream": "^6.0.0",
|
|
22
22
|
"lodash": "^4.17.4",
|
|
23
23
|
"read-pkg-up": "^7.0.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"ava": "
|
|
27
|
-
"
|
|
28
|
-
"conventional-changelog-
|
|
29
|
-
"conventional-changelog-
|
|
30
|
-
"conventional-changelog-
|
|
31
|
-
"conventional-changelog-
|
|
32
|
-
"conventional-changelog-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"xo": "^0.26.0"
|
|
26
|
+
"ava": "3.15.0",
|
|
27
|
+
"conventional-changelog-atom": "2.0.8",
|
|
28
|
+
"conventional-changelog-conventionalcommits": "4.5.0",
|
|
29
|
+
"conventional-changelog-ember": "2.0.9",
|
|
30
|
+
"conventional-changelog-eslint": "3.0.9",
|
|
31
|
+
"conventional-changelog-express": "2.0.6",
|
|
32
|
+
"conventional-changelog-jshint": "2.0.9",
|
|
33
|
+
"escape-string-regexp": "4.0.0",
|
|
34
|
+
"fs-extra": "9.1.0",
|
|
35
|
+
"nyc": "15.1.0",
|
|
36
|
+
"proxyquire": "2.1.3",
|
|
37
|
+
"semantic-release": "17.4.1",
|
|
38
|
+
"sinon": "9.2.4",
|
|
39
|
+
"tempy": "1.0.0",
|
|
40
|
+
"xo": "0.28.3"
|
|
42
41
|
},
|
|
43
42
|
"engines": {
|
|
44
43
|
"node": ">=10.18"
|
|
@@ -87,14 +86,22 @@
|
|
|
87
86
|
"url": "https://github.com/semantic-release/release-notes-generator.git"
|
|
88
87
|
},
|
|
89
88
|
"scripts": {
|
|
90
|
-
"codecov": "codecov -f coverage/coverage-final.json",
|
|
91
89
|
"lint": "xo",
|
|
92
90
|
"pretest": "npm run lint",
|
|
93
91
|
"semantic-release": "semantic-release",
|
|
94
|
-
"test": "nyc ava -v"
|
|
92
|
+
"test": "nyc ava -v",
|
|
93
|
+
"test:ci": "nyc ava -v"
|
|
95
94
|
},
|
|
96
95
|
"xo": {
|
|
97
96
|
"prettier": true,
|
|
98
|
-
"space": true
|
|
97
|
+
"space": true,
|
|
98
|
+
"rules": {
|
|
99
|
+
"unicorn/string-content": "off"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"renovate": {
|
|
103
|
+
"extends": [
|
|
104
|
+
"github>semantic-release/.github"
|
|
105
|
+
]
|
|
99
106
|
}
|
|
100
107
|
}
|