I want to npm run a command to generate a dynamic output file from the file name I pass in the command line. But I am not able to generate that from the below command
In my package.json in the script I have added the command:
scripts:{
"gen-out":"some_cmd src/app/parser/$npm_config_filene.st -o src/app/parser/$npm_config_filene.j"
}
and after running
npm run gen-out --filene=myfile
it produces a file with the name $npm_config_filene.js instead of myfile.js
could anyone help, please?