Skip to content

Commit

Permalink
chore: bump to latest stardoc
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Jun 6, 2024
1 parent ecf00df commit 9452fe0
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ jobs:
uses: bazel-contrib/.github/.github/workflows/bazel.yaml@v6
with:
folders: '["."]'
# stardoc has a conflicting diff on Bazel 6.4.0 so don't test against it
exclude: |
[
{"bazelversion": "6.4.0"},
]
21 changes: 21 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,24 @@ register_copy_to_directory_toolchains()
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")

bazel_skylib_workspace()

# Stardoc
load("@io_bazel_stardoc//:setup.bzl", "stardoc_repositories")

stardoc_repositories()

load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps")

rules_jvm_external_deps()

load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup")

rules_jvm_external_setup()

load("@io_bazel_stardoc//:deps.bzl", "stardoc_external_deps")

stardoc_external_deps()

load("@stardoc_maven//:defs.bzl", stardoc_pinned_maven_install = "pinned_maven_install")

stardoc_pinned_maven_install()
5 changes: 2 additions & 3 deletions docs/Core.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@
# rules_nodejs Bazel module

Features:
- A [Toolchain](https://docs.bazel.build/versions/main/toolchains.html)
- A [Toolchain](https://docs.bazel.build/versions/main/toolchains.html)
that fetches a hermetic copy of node and npm - independent of what's on the developer's machine.
- Core [Providers](https://docs.bazel.build/versions/main/skylark/rules.html#providers) to allow interop between JS rules.


## UserBuildSettingInfo

**USAGE**
Expand All @@ -26,7 +25,7 @@ UserBuildSettingInfo(<a href="#UserBuildSettingInfo-value">value</a>)

<h4 id="UserBuildSettingInfo-value">value</h4>

(Undocumented)
-


## nodejs_repositories
Expand Down
6 changes: 3 additions & 3 deletions repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ def rules_nodejs_dev_dependencies():

http_archive(
name = "io_bazel_stardoc",
sha256 = "d681269c40a368c6eb7e9eccfee44a9919d22f84f80e331e41e74bdf99a3108e",
strip_prefix = "stardoc-8f6d22452d088b49b13ba2c224af69ccc8ccbc90",
sha256 = "62bd2e60216b7a6fec3ac79341aa201e0956477e7c8f6ccc286f279ad1d96432",
urls = [
"https://github.com/bazelbuild/stardoc/archive/8f6d22452d088b49b13ba2c224af69ccc8ccbc90.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.6.2/stardoc-0.6.2.tar.gz",
"https://github.com/bazelbuild/stardoc/releases/download/0.6.2/stardoc-0.6.2.tar.gz",
],
)

Expand Down

0 comments on commit 9452fe0

Please sign in to comment.