如何解决损坏的传递jsDependencies?

时间:2018-07-13 05:05:46

标签: scala sbt scala.js webjars

webjar生态系统最近已被破坏。

请参见https://github.com/webjars/webjars/issues/1789

h1依赖于org.webjars.npm:react:16.2.0,它现在包括新发布的1.4.0版本,该版本依赖于无法解析的org.webjars.npm:loose-envify:[1.1.0,2)

如何将org.webjars.npm#js-tokens;[3.0.0,4),[4.0.0,5)的版本强制为1.3.1,或将org.webjars.npm:loose-envify的版本强制为3.0.2?

我尝试了https://github.com/japgolly/scalajs-react/commit/6446d73464f5f4836d1af1aff5f750325f8e24f7,但是没有用。

1 个答案:

答案 0 :(得分:3)

here得到了https://github.com/rpiaggio的感谢(谢谢!)

使用dependencyOverrides += "org.webjars.npm" % "js-tokens" % "3.0.2"