semantic-release/test/mocks/plugin-result-b.js
Stephan Bönnemann 700ec9d4ca feat(plugins): run verifications in series
With this new feature you can pass an array of plugin locations/names to
both "verifyConditions" and "verifyRelease" in your `package.json`'s "release"
field. This will run multiple verification plugins in series.
2015-08-22 14:52:01 +02:00

4 lines
68 B
JavaScript

module.exports = function (config, options, cb) {
cb(null, 'b')
}