Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 🎸 custom commands definition in cli #217

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Conversation

lukasPan
Copy link
Collaborator

No description provided.

@lukasPan lukasPan changed the title #cnsqa-1767 custom commands definition in cli feat: 🎸 custom commands definition in cli Mar 13, 2025
// Get merkur custom commands
const merkurDir = path.resolve(process.cwd(), 'node_modules/@merkur');
if (fs.existsSync(merkurDir)) {
let dirs = [];
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we setting a default value here and right on the next line we assign a new value? Can't we just assign the new value directly?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New value assign directly.

Comment on lines 53 to 56
dirs = fs.readdirSync(merkurDir)
.map(dir => ({ dir }))

for (const { dir } of dirs) {
Copy link
Collaborator

@Filipoliko Filipoliko Mar 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This mapping feels a bit odd, you are changeing the structure from dirs = ['dir1', 'dir2'] to dirs = [{ dir: 'dir1' }, { dir: 'dir2' }] and right below this line you are again parsing the dir key from each object. What is the point of changing this structure in the first place?

Suggested change
dirs = fs.readdirSync(merkurDir)
.map(dir => ({ dir }))
for (const { dir } of dirs) {
dirs = fs.readdirSync(merkurDir);
for (const dir of dirs) {

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't need to change the structure. Removing dir key.

fs.readdirSync(commandsDir)
.map(command => ({ dir: commandsDir, command }))
.filter(
({ command, dir }) => !customCommands.some(({ command: existingCommand }) => existingCommand === command) &&
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I feel like we should print at least a warning, that we are ignoring some commands due to using the same file name. Or throw an error. Or just try to load everything and hope for the best... but I am not sure what would commander do if you try to load a command with the same name twice... maybe it would throw an error so we don't really have to deal with this at all and really just load everything?

Right now, if we have

@merkur/my-plugin-1
  - lib
    - commands
      - my-command.js

@merkur/my-plugin-2
  - lib
    - commands
      - my-command.js

In this case, only the command from @merkur/my-plugin-1 will be loaded and @merkur/my-plugin-2 will be silently ignored, which can cause some confusion.

.filter(
({ command, dir }) => !customCommands.some(({ command: existingCommand }) => existingCommand === command) &&
fs.statSync(path.join(dir, command)).isFile() &&
(command.endsWith('.js') || command.endsWith('.mjs'))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should support also .cjs format, since we already support 2 out of 3 here?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.cjs format added

@lastuvka
Copy link
Collaborator

It's a nice feature, but will it just reduce the command, but there is really no connection with Merkur? I think that if it has access to Merkur configuration then it will be much more super drupper feature e.g. as its first argument.
I think It could be done with createMerkurConfig function like in
https://github.com/mjancarik/merkur/blob/6def8e9356a21c571fb87a2f6a874ffad1906276/packages/cli/src/commands/custom.mjs. What do you think?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants