Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit fe25ee0

Browse files
committed
Remove dependency on local node_modules for @rxjs repository
1 parent d9861c3 commit fe25ee0

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.circleci/config.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,6 @@ jobs:
5959
# to reproduce a failure.
6060
- run: bazel info release
6161

62-
# Install the dependencies from NPM
63-
# TODO(gmagolan): Use `bazel run :install` once bootstrap issue resolved.
64-
# See https://github.com/bazelbuild/rules_nodejs/issues/275.
65-
- run: yarn
66-
6762
# Build and Test
6863
- run: bazel test //...
6964

WORKSPACE

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ http_archive(
2929
)
3030

3131
# The @rxjs repo contains targets for building rxjs with bazel
32-
local_repository(
32+
http_archive(
3333
name = "rxjs",
34-
path = "node_modules/rxjs/src",
34+
url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz",
35+
strip_prefix = "package/src",
36+
sha256 = "72b0b4e517f43358f554c125e40e39f67688cd2738a8998b4a266981ed32f403",
3537
)
3638

3739
####################################
@@ -44,7 +46,6 @@ rules_angular_dependencies()
4446
load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories", "yarn_install")
4547

4648
node_repositories(
47-
preserve_symlinks = True,
4849
node_version = "10.9.0",
4950
yarn_version = "1.9.2",
5051
)

0 commit comments

Comments
 (0)