Skip to content

Instantly share code, notes, and snippets.

@softprops
Created June 26, 2013 03:09
Show Gist options
  • Save softprops/5864480 to your computer and use it in GitHub Desktop.
Save softprops/5864480 to your computer and use it in GitHub Desktop.
diff --git a/project/WebModule.scala b/project/WebModule.scala
index 737f2a6..3bb4c85 100644
--- a/project/WebModule.scala
+++ b/project/WebModule.scala
@@ -12,11 +12,13 @@ object WebModule extends BaseModule {
def settings = Seq(
// Add your own project settings here
- testOptions in Test += Tests.Argument("junitxml", "console"),
-
- (resourceManaged in (Compile, CoffeeKeys.coffee)) <<= (crossTarget in Compile)(_ / "src" / "main" / "coffee")
-
- ) ++ coffeeSettings
+ testOptions in Test += Tests.Argument("junitxml", "console")
+ ) ++ coffeeSettings ++ Seq(
+ // where coffee is made ( show coffee::source-directory )
+ //sourceDirectory in (Compile, CoffeeKeys.coffee) <<= (sourceDirectory in Compile)(_ / "main" / "coffee")
+ // where javascript goes out ( show coffee::resource-managed )
+ // resourceManaged in (Compile, CoffeeKeys.coffee) <<= (crossTarget in Compile)(_ / "where_ever")
+ )
val libraries = Seq(
Libraries.WebJars.angularJs,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment