Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 351 Bytes

File metadata and controls

14 lines (10 loc) · 351 Bytes

With Scala.js or Scala Native modules, you need to make sure that your dependency specification contains two sets of ::.

For example, this will work for all the platforms:

def ivyDeps = Agg(ivy"com.lihaoyi::scalatags::0.6.7")

but this will work only for JVM:

def ivyDeps = Agg(ivy"com.lihaoyi::scalatags:0.6.7")