From 3388a6ca1a48f157b0fce0767c8a3755ba6c02ef Mon Sep 17 00:00:00 2001 From: Mike Solomon Date: Wed, 15 Jan 2025 08:10:36 -0800 Subject: [PATCH] remove link to hidden bazel doc --- .../moderne-cli/how-to-guides/build-steps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-documentation/moderne-cli/how-to-guides/build-steps.md b/docs/user-documentation/moderne-cli/how-to-guides/build-steps.md index 36d71406..570befd9 100644 --- a/docs/user-documentation/moderne-cli/how-to-guides/build-steps.md +++ b/docs/user-documentation/moderne-cli/how-to-guides/build-steps.md @@ -10,7 +10,7 @@ In the default configuration, the CLI first looks for Maven build files, then Gr The CLI supports 3 external build step types and a resource build step. -The external build step types are Maven, Gradle, and [Bazel](./bazel-support.md). For each of these steps, the CLI will do a file walk from the root directory of a repository looking for top level build files of that type. The execution of that step will execute each top level build file. +The external build step types are Maven, Gradle, and Bazel. For each of these steps, the CLI will do a file walk from the root directory of a repository looking for top level build files of that type. The execution of that step will execute each top level build file. ### External build tool steps @@ -69,7 +69,7 @@ build: **/* ``` -The order of the steps is important, as any file parsed by one step will be skipped by a subsequent step. In this way, the steps drive the order of precedence of build tools. +The order of the steps is important, as any file parsed by one step will be skipped by a subsequent step. In this way, the steps drive the order of precedence of build tools. :::danger Be careful if you remove a build step type as that will make it so that build type will never be used. For instance, if you removed the `bazel` build step, Bazel will never be used to build any files -- even if there were Bazel files present. Instead, Bazel files would be parsed with the `resource` parser.