This repository was archived by the owner on Apr 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 59
59
# to reproduce a failure.
60
60
- run : bazel info release
61
61
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
-
67
62
# Build and Test
68
63
- run : bazel test //...
69
64
Original file line number Diff line number Diff line change @@ -29,9 +29,11 @@ http_archive(
29
29
)
30
30
31
31
# The @rxjs repo contains targets for building rxjs with bazel
32
- local_repository (
32
+ http_archive (
33
33
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" ,
35
37
)
36
38
37
39
####################################
@@ -44,7 +46,6 @@ rules_angular_dependencies()
44
46
load ("@build_bazel_rules_nodejs//:defs.bzl" , "node_repositories" , "yarn_install" )
45
47
46
48
node_repositories (
47
- preserve_symlinks = True ,
48
49
node_version = "10.9.0" ,
49
50
yarn_version = "1.9.2" ,
50
51
)
You can’t perform that action at this time.
0 commit comments