I have followed jeroenouw guide and build a node CLI script which looks like the one here. I'm even able to run it locally by running the following commands:
- npm install
- npm run build
- node ./lib/src/index.js
Now I want this CLI to be installed globally and do not know how? I tried npm pack but did not find any solution with it.
Can anybody help me out?