Skip to content

Commit e18736e

Browse files
committed
build(material): add bazel rules for all components
Part of #8369
1 parent 28943dd commit e18736e

File tree

39 files changed

+2205
-19
lines changed

39 files changed

+2205
-19
lines changed

.circleci/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
anchor_1: &job_defaults
1212
working_directory: ~/ng
1313
docker:
14-
- image: angular/ngcontainer:0.0.4
14+
- image: angular/ngcontainer:0.0.7
1515

1616
# After checkout, rebase on top of master.
1717
# Similar to travis behavior, but not quite the same.
@@ -24,6 +24,7 @@ version: 2
2424
jobs:
2525
build:
2626
<<: *job_defaults
27+
resource_class: large
2728
steps:
2829
- checkout:
2930
<<: *post_checkout
@@ -32,9 +33,9 @@ jobs:
3233

3334
- run: bazel run @nodejs//:npm install
3435
# For some reason, circleci needs the postinstall to be run explicitly.
35-
# This may be unnecessary once ngcontainer uses nodejs 8
36+
# This may be unnecessary once rules_nodejs uses nodejs 8
3637
- run: bazel run @nodejs//:npm run postinstall
37-
- run: bazel build src/cdk/...
38+
- run: bazel build src/...
3839
- save_cache:
3940
key: material2-{{ .Branch }}-{{ checksum "package-lock.json" }}
4041
paths:

WORKSPACE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ node_repositories(package_json = ["//:package.json"])
1616
git_repository(
1717
name = "io_bazel_rules_sass",
1818
remote = "https://github.com/bazelbuild/rules_sass.git",
19-
tag = "0.0.2",
19+
tag = "0.0.3",
2020
)
2121

2222
load("@io_bazel_rules_sass//sass:sass.bzl", "sass_repositories")
@@ -38,6 +38,7 @@ local_repository(
3838
path = "node_modules/@angular/bazel",
3939
)
4040

41+
# Add rxjs
4142
local_repository(
4243
name = "rxjs",
4344
path = "node_modules/rxjs/src",

0 commit comments

Comments
 (0)