semantic-release/test/fixtures/plugin-error-a.js
2017-10-29 14:37:05 -07:00

6 lines
138 B
JavaScript

module.exports = function(config, options, cb) {
const error = new Error('a');
error.errorProperty = 'errorProperty';
cb(error);
};