Skip to content

Commit 6ba95c8

Browse files
chore: fix broken docs.aspect.build links
Update all links using the old /rules/ and /rulesets/ URL patterns to the new /bazel/ path structure on docs.aspect.build. Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
1 parent 199fbdd commit 6ba95c8

14 files changed

Lines changed: 17 additions & 17 deletions

docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,4 @@ npm.npm_exclude_package_contents(
199199

200200
#### Jest
201201

202-
See [rules_jest](https://github.com/aspect-build/rules_jest) specific [troubleshooting](https://docs.aspect.build/rulesets/aspect_rules_jest/docs/troubleshooting#performance).
202+
See [rules_jest](https://github.com/aspect-build/rules_jest) for troubleshooting.

e2e/pnpm_lockfiles/v101/snapshots/is-odd-v0_resolved.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/pnpm_lockfiles/v101/snapshots/is-odd_resolved.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/pnpm_lockfiles/v101/snapshots/lodash_resolved.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/pnpm_lockfiles/v90/snapshots/is-odd-v0_resolved.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/pnpm_lockfiles/v90/snapshots/is-odd_resolved.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/pnpm_lockfiles/v90/snapshots/lodash_resolved.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/private/js_binary.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The following environment variables are made available to the Node.js runtime ba
5454
The following environment variables are made available to the Node.js runtime based the runtime environment:
5555
5656
* JS_BINARY__NODE_BINARY: the Node.js binary path run by the `js_binary` target
57-
* JS_BINARY__NPM_BINARY: the npm binary path; this is available when [`include_npm`](https://docs.aspect.build/rules/aspect_rules_js/docs/js_binary#include_npm) is `True` on the `js_binary` target
57+
* JS_BINARY__NPM_BINARY: the npm binary path; this is available when [`include_npm`](https://docs.aspect.build/bazel/javascript/aspect_rules_js/js_defs#include_npm) is `True` on the `js_binary` target
5858
* JS_BINARY__NODE_WRAPPER: the Node.js wrapper script used to run Node.js which is available as `node` on the `PATH` at runtime
5959
* JS_BINARY__RUNFILES: the absolute path to the Bazel runfiles directory
6060
* JS_BINARY__EXECROOT: the absolute path to the root of the execution root for the action; if in the sandbox, this path absolute path to the root of the execution root within the sandbox

js/private/js_helpers.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Expected to find source file {file_basename} in '{this_package}', but instead it
8383
All source and data files that are not in the Bazel output tree must be in the same package as the
8484
target so that they can be copied to the output tree in an action.
8585
86-
See https://docs.aspect.build/rules/aspect_rules_js/docs/#javascript for more context on why this is required.
86+
See https://docs.aspect.build/bazel/javascript/rules_js for more context on why this is required.
8787
8888
Either move {file_basename} to '{this_package}', or add a 'js_library'
8989
target in {file_basename}'s package and add that target to the deps of {this_target}:

js/private/js_run_binary.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ def js_run_binary(
241241

242242
# Friendly fail if user has specified invalid parameters
243243
if "data" in kwargs.keys():
244-
fail("Use srcs instead of data in js_run_binary: https://docs.aspect.build/rules/aspect_rules_js/docs/js_run_binary#srcs")
244+
fail("Use srcs instead of data in js_run_binary: https://docs.aspect.build/bazel/javascript/aspect_rules_js/js_defs#srcs")
245245
if "deps" in kwargs.keys():
246-
fail("Use srcs instead of deps in js_run_binary: https://docs.aspect.build/rules/aspect_rules_js/docs/js_run_binary#srcs")
246+
fail("Use srcs instead of deps in js_run_binary: https://docs.aspect.build/bazel/javascript/aspect_rules_js/js_defs#srcs")
247247

248248
extra_srcs = []
249249

0 commit comments

Comments
 (0)