const { version } = require('../package.json') as Record; export const VERSION = version as string; // https://github.com/lerna/lerna/tree/master/commands/version#readme export const LERNA_VERSION_ARGS = [ 'version', '--yes', // Only run on master '--allow-branch', 'master', // Use the Beemo conventional commit preset '--conventional-commits', '--changelog-preset', '@oriflame/conventional-changelog', // Create a GitHub release '--create-release', 'github', // Push changes to git '--push', '--force-publish', // Alter commit message to skip CI '--message', 'ci: Release [ci skip].', ]; export const BANNER = `██╗ ██╗ ██╗███╗ ███╗ ██████╗ ███████╗ ██║ ██║ ██║████╗ ████║██╔═══██╗██╔════╝ ██║ ██║ ██║██╔████╔██║██║ ██║███████╗ ██║ ██║ ██║██║╚██╔╝██║██║ ██║╚════██║ version: ${VERSION} ███████╗╚██████╔╝██║ ╚═╝ ██║╚██████╔╝███████║ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝ `;