I am working on a Play framework project where I will be using both LESS and Autoprefixer. My goal is to get these to run in sequence so that when I compile my code, it will run LESS and then run autoprefixer. I am trying to set this up through SBT, but I am finding little documentation to help me.
There are two potential Autoprefixer projects to use - one is a WebJar and the other is sbt-autoprefixer. Including the WebJar doesn't break the build, but it doesn't do any prefixing either. The other library has a version incompatibility with my code, and I would prefer to use a WebJar over including a git: URI in my code as a dependency anyway.
What do I need to do in order to get the WebJar version of Autoprefixer to work? There is no documentation on the WebJar that I can locate.