mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
c5f2979a87
* entry_point attribute of nodejs_binary & rollup_bundle is now a label * nodejs rules 0.30.1 has new feature to symlink node_modules with yarn_install and bazel 0.26.0 includes new managed_directories feature which enables this * Symlinking of node_modules for yarn_install temporarily disabled (except for integration/bazel) until the fix for https://github.com/bazelbuild/bazel/issues/8487 makes it into a future bazel release. This is needed to work-around issue: yarn_install & npm_install with managed directories can't handle deleted or manually regenerated node_modules folder [https://github.com/bazelbuild/rules_nodejs/issues/802]. Underlying issue has been fixed in Bazel https://github.com/bazelbuild/bazel/issues/8487 but hasn't landed in a release yet PR Close #30965
12 lines
237 B
Python
12 lines
237 B
Python
load("@build_bazel_rules_nodejs//:defs.bzl", "nodejs_binary")
|
|
|
|
nodejs_binary(
|
|
name = "brotli-cli",
|
|
data = [
|
|
"cli.js",
|
|
"@npm//brotli",
|
|
],
|
|
entry_point = ":cli.js",
|
|
visibility = ["//:__subpackages__"],
|
|
)
|