I would like to pass a named parameter to an npm run script so I can do something like the following:
"scripts":{
    "say-hello":"echo $greeting && ls"
 }
 npm run hello --greeting=hello
I'd like it to then put 'hello' in place of the $greeting variable, echo the command and then do the ls (this is obviously just a simple example of a chained command)
 
     
     
    