-
-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathMODULE.bazel
More file actions
27 lines (24 loc) · 694 Bytes
/
MODULE.bazel
File metadata and controls
27 lines (24 loc) · 694 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
25
26
27
bazel_dep(name = "aspect_rules_js", version = "0.0.0", dev_dependency = True)
local_path_override(
module_name = "aspect_rules_js",
path = "../..",
)
bazel_dep(name = "bazel_skylib", version = "1.5.0", dev_dependency = True)
pnpm = use_extension("@aspect_rules_js//npm:extensions.bzl", "pnpm")
pnpm.pnpm(
name = "pnpm",
)
use_repo(pnpm, "pnpm", "pnpm__links")
npm = use_extension(
"@aspect_rules_js//npm:extensions.bzl",
"npm",
dev_dependency = True,
)
npm.npm_translate_lock(
name = "npm",
data = ["//:package.json"],
pnpm_lock = "//:pnpm-lock.yaml",
use_home_npmrc = True,
verify_node_modules_ignored = "//:.bazelignore",
)
use_repo(npm, "npm")