Skip to content

Commit

Permalink
fix watch sources for require-js sources
Browse files Browse the repository at this point in the history
  • Loading branch information
casualjim committed Jul 21, 2012
1 parent 95d4229 commit cc0a8c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -6,7 +6,7 @@ name := "sbt-requirejs"

organization := "org.scalatra.requirejs"

version := "0.0.3"
version := "0.0.4-SNAPSHOT"

libraryDependencies ++= Seq(
"net.liftweb" %% "lift-json" % "2.4"
Expand Down
Expand Up @@ -126,7 +126,7 @@ object RequireJsPlugin extends Plugin {
def requireJsSettings: Seq[Setting[_]] = requireJsSettingsIn(Compile) ++ requireJsSettingsIn(Test)

private def requireJsSettings0: Seq[Setting[_]] = Seq(
unmanagedSources in requireJs <<= (sourceDirectory in requireJs, streams) map { (dir, _) => dir.get },
unmanagedSources in requireJs <<= (sourceDirectory in requireJs, streams) map { (dir, _) => (dir ** "*").get },
createBuildProfile in requireJs <<= generateBuildProfile,
optimize in requireJs <<= optimizeTask,
clean in requireJs <<= cleanTask,
Expand Down

0 comments on commit cc0a8c7

Please sign in to comment.