UNPKG

aurelia-bootstrapper-webpack

Version:

Sets up the default configuration for the aurelia framework and gets you up and running quick and easy.

14 lines (10 loc) 304 B
var yargs = require('yargs'); var argv = yargs.argv, validBumpTypes = "major|minor|patch|prerelease".split("|"), bump = (argv.bump || 'patch').toLowerCase(); if(validBumpTypes.indexOf(bump) === -1) { throw new Error('Unrecognized bump "' + bump + '".'); } module.exports = { bump: bump };