I have a simple command I would like to use in my NPM scripts. The command is:
cat ./path/**/*.css > ./other/path/plugins.css
If I run this in my terminal, it works. If however I put it in an NPM script, like so:
"scripts" {
"cat": "cat ./path/**/*.css > ./other/path/plugins.css"
}
I will get No such file or directory.
Any idea what might be the reason?
Thanks!