Skip to content

Commit bfc3f1a

Browse files
committed
chore: fix wrong path in scrolling build config
Fixes a path that wasn't updated in #11481, causing the Bazel build to fail.
1 parent 9bf720a commit bfc3f1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cdk-experimental/scrolling/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ load("@io_bazel_rules_sass//sass:sass.bzl", "sass_binary")
66

77
ng_module(
88
name = "scrolling",
9-
srcs = glob(["**/*.ts"], exclude=["**/*.spec.ts"]),
9+
srcs = glob(["**/*.ts", "../typings.d.ts"], exclude=["**/*.spec.ts"]),
1010
module_name = "@angular/cdk-experimental/scrolling",
1111
assets = [":virtual_scroll_viewport_css"] + glob(["**/*.html"]),
1212
deps = [

src/cdk-experimental/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"files": [
3232
"public-api.ts",
33-
"typings.d.ts"
33+
"./typings.d.ts"
3434
],
3535
"angularCompilerOptions": {
3636
"annotateForClosureCompiler": true,

0 commit comments

Comments
 (0)