Skip to content

Commit

Permalink
Reflect moving adoc generation back
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnangovindraj committed Jan 12, 2024
1 parent 6ae2254 commit fea074c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion java/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ load("@vaticle_dependencies//library/maven:artifacts.bzl", artifacts_org = "arti
load("@vaticle_dependencies//tool/checkstyle:rules.bzl", "checkstyle_test")
load(":rules.bzl", "swig_native_java_library")
load("@google_bazel_common//tools/javadoc:javadoc.bzl", "javadoc_library")
load("@vaticle_bazel_distribution//docs:java/rules.bzl", "javadoc_to_adoc")
load("//tool/docs:java/rules.bzl", "javadoc_to_adoc")
load("//java:docs_structure.bzl", "dir_mapping")

java_library(
Expand Down
2 changes: 1 addition & 1 deletion nodejs/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ exports_files([
"VERSION",
])

load("@vaticle_bazel_distribution//docs:nodejs/rules.bzl", "typedoc_to_adoc")
load("@vaticle_bazel_distribution//npm:rules.bzl", "assemble_npm", "deploy_npm")
load("@vaticle_dependencies//tool/checkstyle:rules.bzl", "checkstyle_test")
load("@vaticle_dependencies//distribution:deployment.bzl", "deployment")
Expand All @@ -39,6 +38,7 @@ load("@aspect_bazel_lib//lib:jq.bzl", "jq")
load("@npm//:defs.bzl", "npm_link_all_packages")
load("//nodejs:tool/typedoc/rules.bzl", "typedoc_docs")
load("//nodejs:docs_structure.bzl", "dir_mapping")
load("//tool/docs:nodejs/rules.bzl", "typedoc_to_adoc")

npm_link_all_packages(
name = "node_modules",
Expand Down
6 changes: 3 additions & 3 deletions python/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
# under the License.
#

load("@vaticle_bazel_distribution//docs:python/rules.bzl", "sphinx_docs", "sphinx_to_adoc")
load("@vaticle_bazel_distribution//docs:python/rules.bzl", "sphinx_docs")
load("@vaticle_dependencies//builder/swig:python.bzl", "py_native_lib_rename")
load("@vaticle_dependencies//tool/checkstyle:rules.bzl", "checkstyle_test")
load("//python:docs_structure.bzl", "dir_mapping")

load("//python:rules.bzl", "native_driver_versioned")
load("//python:python_versions.bzl", "python_versions")
load("//python:docs_structure.bzl", "dir_mapping")
load("//tool/docs:python/rules.bzl", "sphinx_to_adoc")

native_driver_versioned(python_versions = python_versions)

Expand Down
2 changes: 1 addition & 1 deletion rust/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ package(default_visibility = ["//visibility:public"])

load("@rules_rust//rust:defs.bzl", "rust_library", "rust_static_library", "rustfmt_test", "rust_test")
load("@vaticle_bazel_distribution//crates:rules.bzl", "assemble_crate", "deploy_crate")
load("@vaticle_bazel_distribution//docs:rust/rules.bzl", "rust_docs", "rustdoc_to_adoc")
load("@vaticle_dependencies//builder/rust:rules.bzl", "rust_cbindgen")
load("@vaticle_dependencies//builder/swig:java.bzl", "swig_java")
load("@vaticle_dependencies//distribution:deployment.bzl", "deployment")
load("@vaticle_dependencies//tool/checkstyle:rules.bzl", "checkstyle_test")
load("//rust:docs_structure.bzl", "dir_mapping")
load("//tool/docs:rust/rules.bzl", "rust_docs", "rustdoc_to_adoc")

typedb_driver_srcs = glob(["src/**/*.rs"])
typedb_driver_tags = ["crate-name=typedb-driver"]
Expand Down

0 comments on commit fea074c

Please sign in to comment.