Skip to content

Commit eae6234

Browse files
Prepare for next release
1 parent 84e1f10 commit eae6234

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

project/plugins.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"
2-
//resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
2+
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
33

44
val scalaJSVersion =
55
Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.31")
66

77
if (scalaJSVersion.startsWith("0.6")) {
88
//addSbtPlugin(("org.scommons.sbt" % "sbt-scommons-plugin-sjs06" % "0.5.0-SNAPSHOT").changing())
9-
addSbtPlugin("org.scommons.sbt" % "sbt-scommons-plugin-sjs06" % "0.5.0")
9+
addSbtPlugin("org.scommons.sbt" % "sbt-scommons-plugin-sjs06" % "0.6.0")
1010
}
1111
else {
1212
//addSbtPlugin(("org.scommons.sbt" % "sbt-scommons-plugin" % "0.5.0-SNAPSHOT").changing())
13-
addSbtPlugin("org.scommons.sbt" % "sbt-scommons-plugin" % "0.5.0")
13+
addSbtPlugin("org.scommons.sbt" % "sbt-scommons-plugin" % "0.6.0")
1414
}
1515

1616
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.5")

project/src/main/scala/common/Libs.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import scommons.sbtplugin.project.CommonLibs
66

77
object Libs extends CommonLibs {
88

9-
val scommonsApiVersion = "0.5.0"
10-
val scommonsReactVersion = "0.5.1"
11-
val scommonsNodejsVersion = "0.5.0"
12-
val scommonsWebSqlVersion = "0.5.0"
9+
val scommonsApiVersion = "0.6.0"
10+
val scommonsReactVersion = "0.6.0"
11+
val scommonsNodejsVersion = "0.6.0"
12+
val scommonsWebSqlVersion = "0.6.0"
1313

1414
lazy val scommonsApiXhr = Def.setting("org.scommons.api" %%% "scommons-api-xhr" % scommonsApiVersion)
1515
lazy val scommonsReactCore = Def.setting("org.scommons.react" %%% "scommons-react-core" % scommonsReactVersion)

project/src/main/scala/definitions/ScalaJsModule.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ trait ScalaJsModule extends ReactNativeModule {
1818
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
1919
.settings(CommonMobileModule.settings: _*)
2020
.settings(
21-
version in webpack := "4.29.0",
22-
2321
// required for node.js >= v12.12.0
2422
// see:
2523
// https://github.com/nodejs/node/pull/29919

0 commit comments

Comments
 (0)