我有一个使用https://github.com/softprops/coffeescripted-sbt将 CoffeeScript 编译到默认位置的 Scalatra 应用程序target/scala-2.9.1/resource_managed/main/js
。我想将生成的 javascripts 放在一个公开可用的地方,在一个名为 的文件夹中src/main/webapp/coffee
,但给出的示例默认为 `/target/...'
resourceManaged in (Compile, CoffeeKeys.coffee)) <<= (crossTarget in Compile)(_ / "your_preference" / "js")
我的 build.sbt:
seq(coffeeSettings: _*)
// doesn't work
//(resourceManaged in (Compile, CoffeeKeys.coffee)) <<= ("src" / "main" / "webapp" / "coffee")
build.sbt
如果是,我将如何引用我希望编译资产正确进入内部的路径src/main/webapp/coffeee
?