@airbnb/nimbus
Version:
Centralized CLI for JavaScript and TypeScript dev tools.
31 lines (30 loc) • 951 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// eslint-disable-next-line @typescript-eslint/no-require-imports
const { version } = require('../package.json');
exports.VERSION = version;
exports.BANNER = ` _ _ ____ __ __ ____ __ __ ___
( \\( )(_ _)( \\/ )( _ \\( )( )/ __)
) ( _)(_ ) ( ) _ < )(__)( \\__ \\ v${exports.VERSION}
(_)\\_)(____)(_/\\/\\_)(____/ (____) (___/
`;
// https://github.com/lerna/lerna/tree/master/commands/version#readme
exports.LERNA_VERSION_ARGS = [
'version',
'--yes',
// Only run on master
'--allow-branch',
'master',
// Use the Beemo conventional commit preset
'--conventional-commits',
'--changelog-preset',
'conventional-changelog-beemo',
// Create a GitHub release
'--create-release',
'github',
// Push changes to git
'--push',
// Alter commit message to skip CI
'--message',
'Release [ci skip]',
];