playframework-2.3 – 无法让sbt-web使用npm进行前端依赖

前端之家收集整理的这篇文章主要介绍了playframework-2.3 – 无法让sbt-web使用npm进行前端依赖前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用sbt-web和 sbt-js-engine解决我的依赖关系,而不是使用npm而不是webjars.

我的问题是,在Web阶段任务中,依赖关系不会复制到target / web / public / main / lib文件夹中,就像使用webjar一样.

我用sample project from sbt-js-engine做了我的测试.有了这个项目,我希望从target / web / public / main / lib文件夹中的package.json文件中找到console-browserify依赖关系,但不是.

也许我完全误会了什么?

解决方法

当我尝试用npm拉一些测试依赖项时,我自己也有类似的问题.经过几个小时的搜索解决方案,我最终只是在我的build.sbt中编写一个任务来手动移动目录:(可能不是最好的解决方案,但是一个工作)
lazy val copy_node_modules = taskKey[Unit]("Copys the node_module to the test target dir")

copy_node_modules := {
  val node_modules = new File("node_modules")
  val target = new File("target/web/public/main/public/lib/")
  IO.copyDirectory(node_modules,target,true,true)
}

addCommandAlias("get_npm_deps",";web-assets:jseNpmNodeModules;copy_node_modules")

那么您可以使用“get_npm_deps”来引入基于npm的依赖关系

原文链接:https://www.f2er.com/html/229553.html

猜你在找的HTML相关文章