| # Bazel workspace created by @bazel/create 0.38.1 |
| # Declares that this directory is the root of a Bazel workspace. |
| # See https://docs.bazel.build/versions/main/build-ref.html#workspace |
| workspace( |
| # How this workspace would be referenced with absolute labels from another workspace |
| name = "angular_bazel_architect", |
| ) |
| |
| # Install the nodejs "bootstrap" package |
| # This provides the basic tools for running and packaging nodejs programs in Bazel |
| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| |
| http_archive( |
| name = "build_bazel_rules_nodejs", |
| sha256 = "c9c5d60d6234d65b06f86abd5edc60cadd1699f739ee49d33a099d2d67eb1ae8", |
| urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/4.4.0/rules_nodejs-4.4.0.tar.gz"], |
| ) |
| |
| load("@build_bazel_rules_nodejs//nodejs:repositories.bzl", "rules_nodejs_dependencies") |
| |
| rules_nodejs_dependencies() |
| |
| # The yarn_install rule runs yarn anytime the package.json or yarn.lock file changes. |
| # It also extracts and installs any Bazel rules distributed in an npm package. |
| load("@build_bazel_rules_nodejs//:index.bzl", "yarn_install") |
| |
| yarn_install( |
| # Name this npm so that Bazel Label references look like @npm//package |
| name = "npm", |
| data = ["//:patches/@angular-devkit+architect-cli+0.1102.2.patch"], |
| package_json = "//:package.json", |
| # Turn off symlink_node_modules here as it causes extreme flakiness on buildkite |
| # macos CI with missing files in node_modules. |
| # TODO: track down the root cause of the flakiness; it may be something to |
| # do with how the Bazel team has setup their macos virtualization. |
| symlink_node_modules = False, |
| yarn_lock = "//:yarn.lock", |
| ) |
| |
| load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains") |
| |
| nodejs_register_toolchains( |
| name = "node16", |
| node_version = "16.9.0", |
| ) |