I have added the bourbon webjar to my build.sbt:
val Bourbon = "org.webjars.bower" % "bourbon" % "4.2.3"
In my sass file (app/assets/stylesheets/main.sass) I have the import:
@import "../../../target/web/web-modules/main/webjars/lib/bourbon/app/assets/stylesheets/bourbon"
I am somewhat uncomfortable with the ../
and the path length.
Interestingly it seems to be packaged into its own app/assets/stylesheets
directory.
Is there any other way to specify the import?