Skip to content

Commit e4b9126

Browse files
committed
Update sbt files
1 parent 96bba66 commit e4b9126

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

docs/readme.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<<<<<<< HEAD
12
## scala-js-dom
23

34
---
@@ -168,3 +169,19 @@ def changeColor(div: html.Div) = {
168169
The DOM API is always evolving, and `scala-js-dom` tries to provide a thin-but-idiomatic Scala interface to modern browser APIs, without breaking the spec.
169170

170171
If you see something that you think can be improved, feel free to send a pull request. See our [Contributing Guide](https://github.com/scala-js/scala-js-dom/blob/main/CONTRIBUTING.md) for a detailed overview for starting hacking on `scala-js-dom` and making a PR!
172+
=======
173+
# My Project
174+
175+
To install my project
176+
177+
```scala
178+
libraryDependencies += "com" % "lib" % "1.0.0"
179+
```
180+
181+
```scala
182+
val x = 1
183+
// x: Int = 1
184+
List(x, x)
185+
// res0: List[Int] = List(1, 1)
186+
```
187+
>>>>>>> 78916a1 (Update plugins.sbt)

project/Build.scala

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import scalatex.ScalatexReadme
2020
import sbtdynver.DynVerPlugin.autoImport.previousStableVersion
2121
import Dependencies._
2222
import Lib._
23+
import mdoc.MdocPlugin
2324

2425
object Build {
2526

project/plugins.sbt

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ libraryDependencies += "org.scala-js" %% "scalajs-env-selenium" % "1.1.1"
44
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4")
55
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
66
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11")
7-
87
addSbtPlugin("com.lihaoyi" % "scalatex-sbt-plugin" % "0.3.11")
98
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.1")
10-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
9+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
1110
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.6" )
12-

0 commit comments

Comments
 (0)