Skip to content

Commit 0da9323

Browse files
committed
fixup! build: update bazel
fixes a mismatch of the `ts_project` rule. The one for `ts_project` was accidentally used in `ts_library` causing build failures.
1 parent 737b683 commit 0da9323

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/defaults.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
load("@rules_pkg//:pkg.bzl", "pkg_tar")
44
load("@build_bazel_rules_nodejs//:index.bzl", _nodejs_binary = "nodejs_binary", _pkg_npm = "pkg_npm")
55
load("@npm//@bazel/jasmine:index.bzl", _jasmine_node_test = "jasmine_node_test")
6-
load("@npm//@bazel/concatjs:index.bzl", _concatjs_devserver = "concatjs_devserver", _ts_library = "ts_library")
6+
load("@npm//@bazel/concatjs:index.bzl", _concatjs_devserver = "concatjs_devserver", _ts_config = "ts_config", _ts_library = "ts_library")
77
load("@npm//@bazel/rollup:index.bzl", _rollup_bundle = "rollup_bundle")
88
load("@npm//@bazel/terser:index.bzl", "terser_minified")
9-
load("@npm//@bazel/typescript:index.bzl", _ts_config = "ts_config")
109
load("@npm//@bazel/protractor:index.bzl", _protractor_web_test_suite = "protractor_web_test_suite")
1110
load("@npm//typescript:index.bzl", "tsc")
1211
load("//packages/bazel:index.bzl", _ng_module = "ng_module", _ng_package = "ng_package")

0 commit comments

Comments
 (0)