twilio-release-tool
Version:
Twilio Release Tool
17 lines (13 loc) • 342 B
JavaScript
;
// These are always set by the program.
var constants = [
'BRANCH',
'CURRENT_VERSION',
'RELEASE_VERSION',
'DEVELOPMENT_VERSION'
];
var excluding = constants.reduce(function constructExcluding(excluding, constant) {
excluding.set(constant);
return excluding;
}, new Map());
module.exports.excluding = excluding;