-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Setup rtd * Setup rtd * Setup rtd * Setup rtd * Setup rtd * Restore default index.md * configure md * Use md parser * rtd * rtd * rtd * Add doc-tree to index * Working toctree * Add integrations * Add missing files * Add summary * Add docs on usage(ignoring and output) * Note about themes and env variable * Fix wording * Derivation * Change DiffDerivation to AutoDerivation * Extending * Fix approximate * Replacing * Fix mdoc compilation * Remove content from the readme and redirect to microsite * Fix indent * replacement/ignoring * sequences * Update readme * Fix ignoring example * Configure rtd edit on gh button * Fix badge url * Update version
- Loading branch information
1 parent
f5f5087
commit 07df052
Showing
50 changed files
with
1,789 additions
and
542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Required | ||
version: 2 | ||
|
||
sphinx: | ||
configuration: generated-docs/out/conf.py | ||
|
||
# Optionally set the version of Python and requirements required to build your docs | ||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: generated-docs/out/requirements.pip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,10 @@ lazy val commonSettings: Seq[Def.Setting[_]] = commonSmlBuildSettings ++ ossPubl | |
scmInfo := Some(ScmInfo(url("https://github.com/softwaremill/diffx"), "[email protected]:softwaremill/diffx.git")), | ||
ideSkipProject := (scalaVersion.value != scalaIdeaVersion) || thisProjectRef.value.project.contains("JS"), | ||
updateDocs := Def.taskDyn { | ||
val files1 = | ||
UpdateVersionInDocs(sLog.value, organization.value, version.value, List(file("docs-sources") / "README.md")) | ||
val files1 = UpdateVersionInDocs(sLog.value, organization.value, version.value) | ||
Def.task { | ||
(docs.jvm(scala213) / mdoc).toTask("").value | ||
files1 ++ Seq(file("README.md")) | ||
files1 ++ Seq(file("generated-docs/out")) | ||
} | ||
}.value | ||
) | ||
|
@@ -188,9 +187,9 @@ lazy val docs = (projectMatrix in file("generated-docs")) // important: it must | |
mdocVariables := Map( | ||
"VERSION" -> version.value | ||
), | ||
mdocOut := file(".") | ||
mdocOut := file("generated-docs/out") | ||
) | ||
.dependsOn(core, scalatest, specs2, utest, refined, tagging) | ||
.dependsOn(core, scalatest, specs2, utest, refined, tagging, cats) | ||
.jvmPlatform(scalaVersions = List(scala213)) | ||
|
||
val testJVM = taskKey[Unit]("Test JVM projects") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
_build | ||
_build_html |
Oops, something went wrong.