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

Commit 09eab9c

Browse files
gregmagolanalexeagle
authored andcommitted
Update to rules_typescript 0.20.2 (#220)
1 parent 2de01ef commit 09eab9c

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

WORKSPACE

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ http_archive(
2323
# The @angular repo contains rule for building Angular applications
2424
http_archive(
2525
name = "angular",
26-
url = "https://github.com/angular/angular/archive/0e1ca096dab8a6010c9d67eadc7806b5dd992ac0.zip",
27-
strip_prefix = "angular-0e1ca096dab8a6010c9d67eadc7806b5dd992ac0",
26+
url = "https://github.com/angular/angular/archive/08e4489cf5a93a352954f1639da5e92112993753.zip",
27+
strip_prefix = "angular-08e4489cf5a93a352954f1639da5e92112993753",
2828
)
2929

3030
# The @rxjs repo contains targets for building rxjs with bazel
@@ -35,6 +35,14 @@ http_archive(
3535
sha256 = "72b0b4e517f43358f554c125e40e39f67688cd2738a8998b4a266981ed32f403",
3636
)
3737

38+
# This local_repository rule is needed to prevent `bazel build ...` from
39+
# drilling down into the @rxjs workspace BUILD files in node_modules/rxjs/src.
40+
# In the future this will no longer be needed.
41+
local_repository(
42+
name = "ignore_node_modules_rxjs",
43+
path = "node_modules/rxjs/src",
44+
)
45+
3846
####################################
3947
# Load and install our dependencies downloaded above.
4048

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"@angular/core": "github:angular/core-builds#bazel",
1717
"@bazel/benchmark-runner": "0.1.0",
1818
"@bazel/ibazel": "0.5.0",
19-
"@bazel/karma": "0.20.1",
20-
"@bazel/typescript": "0.20.1",
19+
"@bazel/karma": "0.20.2",
20+
"@bazel/typescript": "0.20.2",
2121
"@types/jasmine": "2.8.8",
2222
"@types/node": "6.0.117",
2323
"clang-format": "1.2.4",

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
version "0.5.0"
4747
resolved "https://registry.yarnpkg.com/@bazel/ibazel/-/ibazel-0.5.0.tgz#76f269bd60d866e2aa9e86b25c456d18fee2ef54"
4848

49-
"@bazel/[email protected].1":
50-
version "0.20.1"
51-
resolved "https://registry.yarnpkg.com/@bazel/karma/-/karma-0.20.1.tgz#84e437cb4c4545906152bbfab401ed8111d5d558"
49+
"@bazel/[email protected].2":
50+
version "0.20.2"
51+
resolved "https://registry.yarnpkg.com/@bazel/karma/-/karma-0.20.2.tgz#69b440e320eadce2b4c7de922f87c5fc539b6586"
5252
dependencies:
5353
jasmine-core "2.8.0"
5454
karma alexeagle/karma#fa1a84ac881485b5657cb669e9b4e5da77b79f0a
@@ -61,9 +61,9 @@
6161
requirejs "2.3.5"
6262
tmp "0.0.33"
6363

64-
"@bazel/[email protected].1":
65-
version "0.20.1"
66-
resolved "https://registry.yarnpkg.com/@bazel/typescript/-/typescript-0.20.1.tgz#f6d3ff13fb203ccb6ddeb7ca670978983b3e1b73"
64+
"@bazel/[email protected].2":
65+
version "0.20.2"
66+
resolved "https://registry.yarnpkg.com/@bazel/typescript/-/typescript-0.20.2.tgz#7e31e2fe23458536e4917bf5ee130d55704c54f5"
6767
dependencies:
6868
protobufjs "5.0.0"
6969
source-map-support "0.5.9"

0 commit comments

Comments
 (0)