semantic-release 13.4.0 → 13.4.1
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.
|
@@ -166,3 +166,27 @@ CLI argument: `--publish`
|
|
|
166
166
|
Define the list of [publish plugins](plugins.md#publish-plugin). Plugins will run in series, in the order defined in the `Array`.
|
|
167
167
|
|
|
168
168
|
See [Plugins configuration](plugins.md#configuration) for more details.
|
|
169
|
+
|
|
170
|
+
### success
|
|
171
|
+
|
|
172
|
+
Type: `Array`, `String`, `Object`
|
|
173
|
+
|
|
174
|
+
Default: `[]`
|
|
175
|
+
|
|
176
|
+
CLI argument: `--success`
|
|
177
|
+
|
|
178
|
+
Define the list of [success plugins](plugins.md#success-plugin). Plugins will run in series, in the order defined in the `Array`.
|
|
179
|
+
|
|
180
|
+
See [Plugins configuration](plugins.md#configuration) for more details.
|
|
181
|
+
|
|
182
|
+
### fail
|
|
183
|
+
|
|
184
|
+
Type: `Array`, `String`, `Object`
|
|
185
|
+
|
|
186
|
+
Default: `[]`
|
|
187
|
+
|
|
188
|
+
CLI argument: `--fail`
|
|
189
|
+
|
|
190
|
+
Define the list of [fail plugins](plugins.md#fail-plugin). Plugins will run in series, in the order defined in the `Array`.
|
|
191
|
+
|
|
192
|
+
See [Plugins configuration](plugins.md#configuration) for more details.
|
|
@@ -47,13 +47,13 @@ module.exports = {
|
|
|
47
47
|
},
|
|
48
48
|
},
|
|
49
49
|
success: {
|
|
50
|
-
default:
|
|
50
|
+
default: false,
|
|
51
51
|
config: {
|
|
52
52
|
validator: conf => !conf || (isArray(conf) ? conf : [conf]).every(conf => validatePluginConfig(conf)),
|
|
53
53
|
},
|
|
54
54
|
},
|
|
55
55
|
fail: {
|
|
56
|
-
default:
|
|
56
|
+
default: false,
|
|
57
57
|
config: {
|
|
58
58
|
validator: conf => !conf || (isArray(conf) ? conf : [conf]).every(conf => validatePluginConfig(conf)),
|
|
59
59
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semantic-release",
|
|
3
3
|
"description": "Automated semver compliant package publishing",
|
|
4
|
-
"version": "13.4.
|
|
4
|
+
"version": "13.4.1",
|
|
5
5
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
6
6
|
"bin": {
|
|
7
7
|
"semantic-release": "bin/semantic-release.js"
|