Skip to content

Commit c732f85

Browse files
committed
fix: improve documentation build warnings
- Add starlark language support to Astro syntax highlighting - Update Node.js version to 18.20.8 for better Astro compatibility - Resolves 'starlark language not found' warnings in docs build
1 parent aea85e6 commit c732f85

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ bazel_dep(name = "rules_nodejs", version = "6.5.0")
148148

149149
# Configure Node.js version and tools
150150
node = use_extension("@rules_nodejs//nodejs:extensions.bzl", "node")
151-
node.toolchain(node_version = "18.19.0")
151+
node.toolchain(node_version = "18.20.8")
152152
use_repo(node, "nodejs_toolchains")
153153

154154
# JavaScript/TypeScript WebAssembly components with JCO

MODULE.bazel.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs-site/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default defineConfig({
2323
expressiveCode: {
2424
themes: ['github-dark', 'github-light'],
2525
// Map languages for better syntax highlighting
26-
langs: ['python', 'rust', 'go', 'javascript', 'typescript', 'bash', 'yaml', 'json', 'dockerfile']
26+
langs: ['python', 'rust', 'go', 'javascript', 'typescript', 'bash', 'yaml', 'json', 'dockerfile', 'starlark']
2727
},
2828
social: [
2929
{

0 commit comments

Comments
 (0)