File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
-
2
-
3
1
name := " udash-jquery"
4
2
5
3
inThisBuild(Seq (
@@ -75,7 +73,7 @@ val commonJSSettings = Seq(
75
73
)
76
74
77
75
lazy val root = project.in(file(" ." ))
78
- .enablePlugins(ScalaJSBundlerPlugin )
76
+ .enablePlugins(ScalaJSBundlerPlugin , JSDependenciesPlugin )
79
77
.settings(
80
78
commonSettings,
81
79
commonJSSettings,
@@ -87,5 +85,6 @@ lazy val root = project.in(file("."))
87
85
),
88
86
89
87
Compile / npmDependencies += " jquery" -> " 3.3.1" ,
88
+ jsDependencies += " org.webjars" % " jquery" % " 3.3.1" / " 3.3.1/jquery.js" ,
90
89
Test / requireJsDomEnv := true
91
90
)
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import sbt._
3
3
4
4
object Dependencies {
5
5
val udashCoreVersion = " 0.8.3"
6
- val udashJQueryVersion = " 3.0.2 "
6
+ val udashJQueryVersion = " 3.0.0-SNAPSHOT "
7
7
8
8
val deps = Def .setting(Seq [ModuleID ](
9
9
" io.udash" %%% " udash-core" % udashCoreVersion,
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ logLevel := Level.Warn
2
2
3
3
addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.0.1" )
4
4
addSbtPlugin(" ch.epfl.scala" % " sbt-scalajs-bundler" % " 0.17.0" )
5
+ addSbtPlugin(" org.scala-js" % " sbt-jsdependencies" % " 1.0.0" )
5
6
6
7
// Deployment configuration
7
8
addSbtPlugin(" com.jsuereth" % " sbt-pgp" % " 2.0.1" )
You can’t perform that action at this time.
0 commit comments