I have a set of CMD scripts that I use for development.
Now I am thinking of creating a Node module (for easier distribution) that will be installed globally and will just call my CMD scripts.
I've seen guides about creating global node modules but all I found are using .js files and node converting it to .cmd. What I need is to be able to use my cmd files directly (without needing to convert to .js only to be converted to .cmd)
Any ideas? Thanks!