jlitola / play-sass

Sass asset handling for Play Framework 2.0 *DEPRECATED*
MIT License
90 stars 28 forks source link

compass option in play 2.3 #37

Closed thomasleduc closed 9 years ago

thomasleduc commented 9 years ago

Thanks for this awesome plugin.

But I have some issue to use compass with the --compass option.

name := """XXXXXXX"""

version := "1.0-SNAPSHOT"

lazy val root = (project in file(".")).enablePlugins(PlayJava, net.litola.SassPlugin)
  .settings(
    sassOptions := Seq("--compass")
  )

scalaVersion := "2.11.1"

libraryDependencies ++= Seq(
  javaJdbc,
  javaEbean,
  cache,
  javaWs
)

My scss files are compiled but not with compass. Is it a real issue or just me ?

thomasleduc commented 9 years ago

I'm sorry it's work perfectly, just forgot to import the right compass in main file.