Skip to content

Commit bc288e1

Browse files
committed
chore: table build
1 parent cc59322 commit bc288e1

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.bazelrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
common --announce_rc
2+
13
###############################
24
# Filesystem interactions #
35
###############################
@@ -118,10 +120,12 @@ build:remote --remote_accept_cached=true
118120
# Enable debugging tests with --config=debug
119121
test:debug --test_arg=--node_options=--inspect-brk --test_output=streamed --test_strategy=exclusive --test_timeout=9999 --nocache_test_results
120122

123+
121124
################################
122125
# Local Environment Setup #
123126
# Needs to be last statement #
124127
################################
125128
# Load any settings which are specific to the current user. Needs to be *last* statement
126129
# in this config, as the user configuration should be able to overwrite flags from this file.
127130
try-import .bazelrc.user
131+
import %workspace%/.circleci/bazel.rc

.circleci/bazel.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ build --repository_cache=/home/circleci/bazel_repository_cache
1717
# and we don't want to accidentally run out of memory.
1818
build --local_ram_resources=14336
1919
build --local_cpu_resources=8
20+

src/material/core/theming/_all-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
@include mat-card-theme($theme-or-color-config);
5050
@include mat-checkbox-theme($theme-or-color-config);
5151
@include mat-chips-theme($theme-or-color-config);
52-
@include mat-table-theme($theme-or-color-config);
52+
// @include mat-table-theme($theme-or-color-config);
5353
@include mat-datepicker-theme($theme-or-color-config);
5454
@include mat-dialog-theme($theme-or-color-config);
5555
@include mat-divider-theme($theme-or-color-config);

src/material/table/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ng_module(
3131

3232
sass_library(
3333
name = "table_scss_lib",
34-
srcs = ["_table-theme.scss"],
34+
srcs = glob(["**/_*.scss"]),
3535
deps = ["//src/material/core:core_scss_lib"],
3636
)
3737

0 commit comments

Comments
 (0)