Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在我的 sbt 项目中预处理一些 Twirl 模板。是否可以在 build.sbt 中定义一个在Twirl 插件编译其模板之前运行的任务?
sbt-web允许通过以下方式对资产管道进行排序pipelineStages:
sbt-web
pipelineStages
pipelineStages := Seq(myPreProcessorTask, myTwirlTask)
文档: 编写资产管道任务
来源在GitHub 上。