From 660546d0ec63d74cc8bee46498a117a36640bb48 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Tue, 7 Jan 2020 14:32:31 -0800 Subject: [PATCH] refactor(bazel): remove explicit deps param to ts_compile_actions (#34665) This was already the default. I'm working on a change in the underlying TS rules where this parameter will be replaced, so ng_module needs to change first PR Close #34665 --- packages/bazel/src/ng_module.bzl | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/bazel/src/ng_module.bzl b/packages/bazel/src/ng_module.bzl index c66bbde31e..a38f6a8da2 100644 --- a/packages/bazel/src/ng_module.bzl +++ b/packages/bazel/src/ng_module.bzl @@ -578,7 +578,6 @@ def ng_module_impl(ctx, ts_compile_actions): providers = ts_compile_actions( ctx, is_library = True, - deps = ctx.attr.deps, compile_action = _prodmode_compile_action, devmode_compile_action = _devmode_compile_action, tsc_wrapped_tsconfig = _ngc_tsconfig,