I am having an issue with the following npm task that runs autoprefixer against a wildcard path:
"css:autoprefix": "postcss -u autoprefixer --autoprefixer.browsers \"Last 2 versions\" -r src/frontend/app/**/*.css"
The command works perfectly on windows but on my linux (jenkins build server, the css is not getting prefixed. Is it possible that linux isn't understanding the **/*.css
in the command?