Skip to content

Commit

Permalink
feat: added Paragon CLI version command (#2921)
Browse files Browse the repository at this point in the history
* feat: added Paragon CLI version command

* refactor: refactoring after review
  • Loading branch information
PKulkoRaccoonGang authored Dec 13, 2023
1 parent be9d347 commit 8ef95bc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
12 changes: 11 additions & 1 deletion bin/paragon-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
const chalk = require('chalk');
const themeCommand = require('../lib/install-theme');
const helpCommand = require('../lib/help');
const versionCommand = require('../lib/version');

const HELP_COMMAND = 'help';
const commandAliases = {
'-v': 'version',
'--version': 'version',
};

const COMMANDS = {
/**
Expand Down Expand Up @@ -47,11 +52,16 @@ const COMMANDS = {
executor: helpCommand,
description: 'Displays help for available commands.',
},
version: {
executor: versionCommand,
description: 'Displays the current version of Paragon CLI.',
},
};

(async () => {
const [command] = process.argv.slice(2);
const executor = COMMANDS[command];
const resolvedCommand = commandAliases[command] || command;
const executor = COMMANDS[resolvedCommand];

if (!executor) {
// eslint-disable-next-line no-console
Expand Down
9 changes: 9 additions & 0 deletions lib/version.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* eslint-disable no-console */
const chalk = require('chalk');
const { version } = require('../package.json');

function versionCommand() {
console.log(`Paragon CLI version: ${chalk.bold(version)}`);
}

module.exports = versionCommand;

0 comments on commit 8ef95bc

Please sign in to comment.