Add starlark highlighting to Bazel readme (#1264)
Mark the build files as using the starlark language so they have the correct syntax highlighting.
This commit is contained in:
committed by
GitHub
parent
ef2a8e929d
commit
350c19a36c
@@ -3,7 +3,7 @@
|
|||||||
## Setup Instructions
|
## Setup Instructions
|
||||||
|
|
||||||
In `WORKSPACE` file, put:
|
In `WORKSPACE` file, put:
|
||||||
```
|
```starlark
|
||||||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||||||
http_archive(
|
http_archive(
|
||||||
name = "emsdk",
|
name = "emsdk",
|
||||||
@@ -37,7 +37,7 @@ build --incompatible_enable_cc_toolchain_resolution
|
|||||||
|
|
||||||
Then write a new rule wrapping your `cc_binary`.
|
Then write a new rule wrapping your `cc_binary`.
|
||||||
|
|
||||||
```
|
```starlark
|
||||||
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
||||||
load("@emsdk//emscripten_toolchain:wasm_rules.bzl", "wasm_cc_binary")
|
load("@emsdk//emscripten_toolchain:wasm_rules.bzl", "wasm_cc_binary")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user