@zio.dev/zio-sbt 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/developer-notes.md +3 -0
- package/index.md +2 -2
- package/package.json +1 -1
package/developer-notes.md
CHANGED
|
@@ -6,10 +6,13 @@ title: "Developer Notes"
|
|
|
6
6
|
## Todo List
|
|
7
7
|
|
|
8
8
|
### ZIO SBT Website
|
|
9
|
+
|
|
9
10
|
- Add a command to make a version history page in documentation
|
|
10
11
|
- Check if the committed workflow is valid or not.
|
|
11
12
|
- To generate README.md file, it doesn't need to compile all docs.
|
|
12
13
|
- Add env variable for zio version (ZIO_VERSION).
|
|
13
14
|
- Support for various scala versions
|
|
14
15
|
- Support for auto update PRs
|
|
16
|
+
- Add workflow for header checker
|
|
17
|
+
- Add prepare task to perform preliminary tasks before PR
|
|
15
18
|
|
package/index.md
CHANGED
|
@@ -5,14 +5,14 @@ title: "ZIO SBT"
|
|
|
5
5
|
|
|
6
6
|
_ZIO SBT_ is an sbt plugin for ZIO projects. It provides high-level SBT utilities that simplify the development of ZIO applications.
|
|
7
7
|
|
|
8
|
-
[](https://github.com/zio/zio/wiki/Project-Stages)  [](https://oss.sonatype.org/content/repositories/releases/dev/zio/zio-sbt-website_2.12/) [](https://oss.sonatype.org/content/repositories/snapshots/dev/zio/zio-sbt-website_2.12/) [](https://github.com/zio/zio-sbt)
|
|
8
|
+
[](https://github.com/zio/zio/wiki/Project-Stages)  [](https://oss.sonatype.org/content/repositories/releases/dev/zio/zio-sbt-website_2.12/) [](https://oss.sonatype.org/content/repositories/snapshots/dev/zio/zio-sbt-website_2.12/) [](https://javadoc.io/doc/dev.zio/zio-sbt-docs_2.13) [](https://github.com/zio/zio-sbt)
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
12
|
Add the following lines to your `plugin.sbt` file:
|
|
13
13
|
|
|
14
14
|
```scala
|
|
15
|
-
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.2.
|
|
15
|
+
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.2.6")
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Then you can enable it by using the following code in your `build.sbt` file:
|
package/package.json
CHANGED