-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
24 lines (19 loc) · 835 Bytes
/
MODULE.bazel
File metadata and controls
24 lines (19 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module(
name = "bzlparty_rules_quickjs",
version = "0.0.0",
compatibility_level = 1,
)
bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "aspect_bazel_lib", version = "2.7.8")
bazel_dep(name = "aspect_rules_js", version = "2.0.0-rc6")
bazel_dep(name = "bzlparty_tools", version = "0.4.0")
rules_quickjs_toolchains = use_extension("@bzlparty_rules_quickjs//:extensions.bzl", "toolchains")
rules_quickjs_toolchains.qjs()
use_repo(rules_quickjs_toolchains, "qjs")
register_toolchains("@qjs//:all")
#ifndef _BZLPARTY_RELEASE_
tools = use_extension("@bzlparty_tools//:extensions.bzl", "tools", dev_dependency = True)
use_repo(tools, "biome", "shellcheck", "typos")
bazel_dep(name = "buildifier_prebuilt", version = "6.4.0", dev_dependency = True)
#endif