Skip to content

Commit

Permalink
Bump Scala.js to 1.3.0, scalajs-dom and scalajs-react while we're at it
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindberg committed Oct 27, 2020
1 parent 3d29123 commit 3a2861c
Show file tree
Hide file tree
Showing 240 changed files with 362 additions and 361 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ target/
.bloop
.DS_Store
release-temp/
.bsp/
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ class ContentForPublishTest extends AnyFunSuite with Matchers {
<dependencies>
<dependency org="org.scala-lang" name="scala-compiler" rev="2.13.3" conf="scala-tool-&gt;default,optional(default)"/>
<dependency org="org.scala-lang" name="scala-library" rev="2.13.3" conf="scala-tool-&gt;default,optional(default);compile-&gt;default(compile)"/>
<dependency org="org.scala-js" name="scalajs-compiler_2.13.3" rev="1.1.0" conf="plugin-&gt;default(compile)"/>
<dependency org="org.scala-js" name="scalajs-library_2.13" rev="1.1.0" conf="compile-&gt;default(compile)"/>
<dependency org="org.scala-js" name="scalajs-test-interface_2.13" rev="1.1.0" conf="test-&gt;default(compile)"/>
<dependency org="org.scala-js" name="scalajs-compiler_2.13.3" rev="1.3.0" conf="plugin-&gt;default(compile)"/>
<dependency org="org.scala-js" name="scalajs-library_2.13" rev="1.3.0" conf="compile-&gt;default(compile)"/>
<dependency org="org.scala-js" name="scalajs-test-interface_2.13" rev="1.3.0" conf="test-&gt;default(compile)"/>
<dependency org="com.olvind" name="scalablytyped-runtime_sjs1_2.13" rev="2.1.0" conf="compile-&gt;default(compile)"/>
<dependency org="deporg" name="departifactid_sjs1_2.13" rev="depversion" conf="compile-&gt;default(compile)"/>
<dependency org="externaldeporg" name="externaldepartifact_sjs1_2.13" rev="externaldepversion" conf="compile-&gt;default(compile)"/>
Expand Down Expand Up @@ -102,12 +102,12 @@ class ContentForPublishTest extends AnyFunSuite with Matchers {
<dependency>
<groupId>org.scala-js</groupId>
<artifactId>scalajs-library_2.13</artifactId>
<version>1.1.0</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.scala-js</groupId>
<artifactId>scalajs-test-interface_2.13</artifactId>
<version>1.1.0</version>
<version>1.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ resolvers += Resolver.bintrayRepo("oyvindberg", "converter")
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
else addSbtPlugin("org.scalablytyped.converter" % """sbt-converter""" % pluginVersion)
}
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.3.0")
4 changes: 2 additions & 2 deletions sbt-converter/src/sbt-test/react/japgolly/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ if (pluginVersion == null)
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
else addSbtPlugin("org.scalablytyped.converter" % """sbt-converter""" % pluginVersion)

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.1.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.18.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.3.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0")
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ if (pluginVersion == null)
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
else addSbtPlugin("org.scalablytyped.converter" % """sbt-converter""" % pluginVersion)

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.1.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.18.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.3.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0")
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ object Versions {
val sbtVersion = "1.4.0"

val runtime = Dep.ScalaJs("com.olvind", "scalablytyped-runtime", "2.1.0")
val scalaJsDom = Dep.ScalaJs("org.scala-js", "scalajs-dom", "1.0.0")
val scalaJsDom = Dep.ScalaJs("org.scala-js", "scalajs-dom", "1.1.0")
val slinkyWeb = Dep.ScalaJs("me.shadaj", "slinky-web", "0.6.6")
val slinkyNative = Dep.ScalaJs("me.shadaj", "slinky-native", "0.6.6")
val scalajsReact = Dep.ScalaJs("com.github.japgolly.scalajs-react", "core", "1.7.0")
val scalajsReact = Dep.ScalaJs("com.github.japgolly.scalajs-react", "core", "1.7.5")

private val StableVersion = "(\\d+).(\\d+).(\\d+)".r

Expand Down Expand Up @@ -55,7 +55,7 @@ object Versions {
val sbtPlugin = Dep.Scala(scalaJsOrganization, "sbt-scalajs", scalaJsVersion)
}

val ScalaJs1 = ScalaJs("1.1.0")
val ScalaJs1 = ScalaJs("1.3.0")
val ScalaJs06 = ScalaJs("0.6.33")
}

Expand Down
2 changes: 1 addition & 1 deletion tests/antd/check/a/antd/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "antd"
version := "4.3.1-711f3a"
version := "4.3.1-3e5cad"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/antd/check/a/antd/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/antd/check/r/rc-field-form/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "rc-field-form"
version := "1.4.4-e65d5c"
version := "1.4.4-98e1e9"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/antd/check/r/rc-field-form/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
4 changes: 2 additions & 2 deletions tests/augment-module/check/l/lodash/build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
organization := "org.scalablytyped"
name := "lodash"
version := "4.14-cdbe52"
version := "4.14-0efecc"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
"com.olvind" %%% "scalablytyped-runtime" % "2.1.0",
"org.scalablytyped" %%% "std" % "0.0-unknown-c2ff44")
"org.scalablytyped" %%% "std" % "0.0-unknown-4006ba")
publishArtifact in packageDoc := false
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-g:notailcalls", "-language:implicitConversions", "-language:higherKinds", "-language:existentials")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
Expand Down
2 changes: 1 addition & 1 deletion tests/augment-module/check/l/lodash/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/augment-module/check/l/lodash_dot_add/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "lodash_dot_add"
version := "3.7-29d732"
version := "3.7-c000c4"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/augment-module/check/s/std/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "std"
version := "0.0-unknown-c2ff44"
version := "0.0-unknown-4006ba"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/augment-module/check/s/std/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/aws-sdk/check/a/aws-sdk/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "aws-sdk"
version := "2.247.1-c23fae"
version := "2.247.1-c013a8"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/aws-sdk/check/a/aws-sdk/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/babylon/check/b/babylon/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "babylon"
version := "0.0-unknown-ebd10d"
version := "0.0-unknown-ab6dec"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/babylon/check/b/babylon/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/babylon/check/n/node/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "node"
version := "0.0-unknown-e977d5"
version := "0.0-unknown-572f22"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/babylon/check/n/node/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
4 changes: 2 additions & 2 deletions tests/bigint/check/b/bigint/build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
organization := "org.scalablytyped"
name := "bigint"
version := "v5.5.3-04d66a"
version := "v5.5.3-2961ed"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
"com.olvind" %%% "scalablytyped-runtime" % "2.1.0",
"org.scalablytyped" %%% "std" % "0.0-unknown-e59afd")
"org.scalablytyped" %%% "std" % "0.0-unknown-6813fd")
publishArtifact in packageDoc := false
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-g:notailcalls", "-language:implicitConversions", "-language:higherKinds", "-language:existentials")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
Expand Down
2 changes: 1 addition & 1 deletion tests/bigint/check/b/bigint/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/bigint/check/s/std/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "std"
version := "0.0-unknown-e59afd"
version := "0.0-unknown-6813fd"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/bigint/check/s/std/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
4 changes: 2 additions & 2 deletions tests/chart.js/check/c/chart_dot_js/build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
organization := "org.scalablytyped"
name := "chart_dot_js"
version := "0.0-unknown-37c21c"
version := "0.0-unknown-5992b3"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
"com.olvind" %%% "scalablytyped-runtime" % "2.1.0",
"org.scalablytyped" %%% "std" % "0.0-unknown-9c73bf")
"org.scalablytyped" %%% "std" % "0.0-unknown-196977")
publishArtifact in packageDoc := false
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-g:notailcalls", "-language:implicitConversions", "-language:higherKinds", "-language:existentials")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
Expand Down
2 changes: 1 addition & 1 deletion tests/chart.js/check/c/chart_dot_js/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/chart.js/check/s/std/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "std"
version := "0.0-unknown-9c73bf"
version := "0.0-unknown-196977"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/chart.js/check/s/std/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
4 changes: 2 additions & 2 deletions tests/cldrjs/check/c/cldrjs/build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
organization := "org.scalablytyped"
name := "cldrjs"
version := "0.4.4-96203f"
version := "0.4.4-b17553"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
"com.olvind" %%% "scalablytyped-runtime" % "2.1.0",
"org.scalablytyped" %%% "std" % "0.0-unknown-c6dcd1")
"org.scalablytyped" %%% "std" % "0.0-unknown-0406a0")
publishArtifact in packageDoc := false
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-g:notailcalls", "-language:implicitConversions", "-language:higherKinds", "-language:existentials")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
Expand Down
2 changes: 1 addition & 1 deletion tests/cldrjs/check/c/cldrjs/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/cldrjs/check/s/std/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "std"
version := "0.0-unknown-c6dcd1"
version := "0.0-unknown-0406a0"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/cldrjs/check/s/std/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
6 changes: 3 additions & 3 deletions tests/commander/check/c/commander/build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
organization := "org.scalablytyped"
name := "commander"
version := "2.15.1-aea2a3"
version := "2.15.1-ed391a"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
"com.olvind" %%% "scalablytyped-runtime" % "2.1.0",
"org.scalablytyped" %%% "node" % "0.0-unknown-49716a",
"org.scalablytyped" %%% "std" % "0.0-unknown-a55a4c")
"org.scalablytyped" %%% "node" % "0.0-unknown-b67805",
"org.scalablytyped" %%% "std" % "0.0-unknown-033c1c")
publishArtifact in packageDoc := false
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-g:notailcalls", "-language:implicitConversions", "-language:higherKinds", "-language:existentials")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
Expand Down
2 changes: 1 addition & 1 deletion tests/commander/check/c/commander/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/commander/check/n/node/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "node"
version := "0.0-unknown-49716a"
version := "0.0-unknown-b67805"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/commander/check/n/node/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/commander/check/s/std/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "std"
version := "0.0-unknown-a55a4c"
version := "0.0-unknown-033c1c"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/commander/check/s/std/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/const-enum/check/c/const-enum/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "const-enum"
version := "0.0-unknown-86bc1b"
version := "0.0-unknown-a2e762"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/const-enum/check/c/const-enum/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
4 changes: 2 additions & 2 deletions tests/create-error/check/c/create-error/build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
organization := "org.scalablytyped"
name := "create-error"
version := "0.3.1-90c4e9"
version := "0.3.1-361d38"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
"com.olvind" %%% "scalablytyped-runtime" % "2.1.0",
"org.scalablytyped" %%% "std" % "0.0-unknown-818abc")
"org.scalablytyped" %%% "std" % "0.0-unknown-737b81")
publishArtifact in packageDoc := false
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-g:notailcalls", "-language:implicitConversions", "-language:higherKinds", "-language:existentials")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/create-error/check/s/std/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "std"
version := "0.0-unknown-818abc"
version := "0.0-unknown-737b81"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/create-error/check/s/std/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
4 changes: 2 additions & 2 deletions tests/defaulted-tparams/check/d/defaulted-tparams/build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
organization := "org.scalablytyped"
name := "defaulted-tparams"
version := "0.0-unknown-14d265"
version := "0.0-unknown-9ba3df"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
"com.olvind" %%% "scalablytyped-runtime" % "2.1.0",
"org.scalablytyped" %%% "std" % "0.0-unknown-ad6a61")
"org.scalablytyped" %%% "std" % "0.0-unknown-92722a")
publishArtifact in packageDoc := false
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-g:notailcalls", "-language:implicitConversions", "-language:higherKinds", "-language:existentials")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
2 changes: 1 addition & 1 deletion tests/defaulted-tparams/check/s/std/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "org.scalablytyped"
name := "std"
version := "0.0-unknown-ad6a61"
version := "0.0-unknown-92722a"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion tests/defaulted-tparams/check/s/std/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.1.0")
addSbtPlugin("org.scala-js" %% "sbt-scalajs" % "1.3.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
4 changes: 2 additions & 2 deletions tests/elasticsearch-js/check/e/elasticsearch-js/build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
organization := "org.scalablytyped"
name := "elasticsearch-js"
version := "0.0-unknown-31f76f"
version := "0.0-unknown-317af5"
scalaVersion := "2.13.3"
enablePlugins(ScalaJSPlugin)
libraryDependencies ++= Seq(
"com.olvind" %%% "scalablytyped-runtime" % "2.1.0",
"org.scalablytyped" %%% "std" % "0.0-unknown-fe0429")
"org.scalablytyped" %%% "std" % "0.0-unknown-9b635e")
publishArtifact in packageDoc := false
scalacOptions ++= List("-encoding", "utf-8", "-feature", "-g:notailcalls", "-language:implicitConversions", "-language:higherKinds", "-language:existentials")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
Expand Down
Loading

0 comments on commit 3a2861c

Please sign in to comment.