b081dfe705
Same fix as e70d7a2a7c
This is because the CompilerOptions needs to have directoryExists undefined in order to get the google3 behavior,
so we have to set the property outside the constructor.
Fixes #21872
PR Close #21876
43 lines
1.0 KiB
Python
43 lines
1.0 KiB
Python
workspace(name = "bazel_integration_test")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
|
|
|
git_repository(
|
|
name = "build_bazel_rules_nodejs",
|
|
remote = "https://github.com/bazelbuild/rules_nodejs.git",
|
|
commit = "230d39a391226f51c03448f91eb61370e2e58c42",
|
|
)
|
|
|
|
load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories")
|
|
node_repositories(package_json = ["//:package.json"])
|
|
|
|
git_repository(
|
|
name = "build_bazel_rules_typescript",
|
|
remote = "https://github.com/bazelbuild/rules_typescript.git",
|
|
commit = "d3ad16d1f105e2490859da9ad528ba4c45991d09"
|
|
)
|
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace")
|
|
|
|
ts_setup_workspace()
|
|
|
|
local_repository(
|
|
name = "angular",
|
|
path = "node_modules/@angular/bazel",
|
|
)
|
|
|
|
local_repository(
|
|
name = "rxjs",
|
|
path = "node_modules/rxjs/src",
|
|
)
|
|
|
|
git_repository(
|
|
name = "io_bazel_rules_sass",
|
|
remote = "https://github.com/bazelbuild/rules_sass.git",
|
|
tag = "0.0.3",
|
|
)
|
|
|
|
load("@io_bazel_rules_sass//sass:sass.bzl", "sass_repositories")
|
|
|
|
sass_repositories()
|