This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: update Bazel to use fine-grained deps
- Loading branch information
1 parent
fd87d0d
commit e8be23a
Showing
49 changed files
with
2,390 additions
and
1,227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Bazel configuration that will be copied to /etc/bazel.bazelrc in CircleCI containers. | ||
# This allows us adding specific configuration flags for builds within CircleCI. | ||
# See more: https://docs.bazel.build/versions/master/user-manual.html#where-are-the-bazelrc-files | ||
|
||
# Save downloaded repositories in a location that can be cached by CircleCI. This helps us | ||
# speeding up the analysis time significantly with Bazel managed node dependencies on the CI. | ||
build --experimental_repository_cache=/home/circleci/bazel_repository_cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1 @@ | ||
# Marker file indicating this folder is a Bazel package. | ||
# Needed so that tsconfig.json can be referenced from BUILD rules. | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
exports_files(["tsconfig.json"]) | ||
|
||
load("@build_bazel_rules_nodejs//:defs.bzl", "node_modules_filegroup") | ||
|
||
alias( | ||
name = "install", | ||
actual = "@yarn//:yarn", | ||
) | ||
|
||
node_modules_filegroup( | ||
name = "node_modules", | ||
packages = [ | ||
"bytebuffer", | ||
"express", | ||
"hapi", | ||
"jasmine", | ||
"protobufjs", | ||
"rxjs", | ||
"tsickle", | ||
"tslib", | ||
"tsutils", | ||
"typescript", | ||
"zone.js", | ||
"@angular", | ||
"@angular-devkit", | ||
"@schematics", | ||
"@types", | ||
], | ||
) |
Oops, something went wrong.