OpenLightingProject / open-fixture-library

A library and website for lighting technology's DMX fixture definition files.
https://open-fixture-library.org/
MIT License
189 stars 64 forks source link

Normalize CLI options #439

Open FloEdelmann opened 6 years ago

FloEdelmann commented 6 years ago

Use the same command line parameters for similar functions (e.g. always --plugin / -p for fixture import, export, export test, etc.).

Also use minimist for main.js to set the port and dev server.

And in the same PR, we could switch from the colors devDependency to chalk as it's more versatile and less confusing (colors vs. color vs. color-names). (done separately)

FloEdelmann commented 6 years ago

Also bring all CLI tools' help messages into line. If they output usable plugin keys, those should not be hardcoded, but taken from plugins.json.

FloEdelmann commented 6 years ago

Also update references to the CLI tool usage in the docs and in GitHub tests.

FloEdelmann commented 6 years ago

A potentially useful tool: https://github.com/tj/commander.js

Swiftb0y commented 4 years ago

I am feeling quite limited by minimist. It's also not been maintained by quite some time now. Does anything speak against phasing out minimist in favor of commander.js or yargs (slightly more features)?

fxedel commented 4 years ago

I have no problem with replacing the minimist library, we should only be consistent and use the new dependency in every CLI script then. In fact, tackling this issue is a good occasion to replace the old library :+1: