Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit c138b1c

Browse files
committed
Restore some changes which were made directly on GitHub and later overwritten by Copybara.
PiperOrigin-RevId: 186814719
1 parent fc65190 commit c138b1c

File tree

3 files changed

+36
-4
lines changed

3 files changed

+36
-4
lines changed

.bazelci/presubmit.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
platforms:
3+
ubuntu1404:
4+
run_targets:
5+
- "@yarn//:yarn"
6+
build_targets:
7+
- "..."
8+
test_flags:
9+
- "--test_tag_filters=-browser:Chrome"
10+
test_targets:
11+
- "..."
12+
ubuntu1604:
13+
run_targets:
14+
- "@yarn//:yarn"
15+
build_targets:
16+
- "..."
17+
test_flags:
18+
- "--test_tag_filters=-browser:Chrome"
19+
test_targets:
20+
- "..."
21+
macos:
22+
run_targets:
23+
- "@yarn//:yarn"
24+
build_targets:
25+
- "..."
26+
test_targets:
27+
- "..."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Circle CI | Bazel CI
44
:---: | :---:
5-
[![CircleCI](https://circleci.com/gh/bazelbuild/rules_typescript.svg?style=svg)](https://circleci.com/gh/bazelbuild/rules_typescript) | [![Build Status](http://ci.bazel.io/buildStatus/icon?job=rules_typescript)](http://ci.bazel.io/job/rules_typescript)
5+
[![CircleCI](https://circleci.com/gh/bazelbuild/rules_typescript.svg?style=svg)](https://circleci.com/gh/bazelbuild/rules_typescript) | [![Build status](https://badge.buildkite.com/7f98e137cd86baa5a4040a7e750bef87ef5fd293092fdaf878.svg)](https://buildkite.com/bazel/typescript-rules-typescript-postsubmit)
66

77
**WARNING: this is an early release with limited features. Breaking changes are likely. Not recommended for general use.**
88

WORKSPACE

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@
1414

1515
workspace(name = "build_bazel_rules_typescript")
1616

17-
git_repository(
17+
# Using a pre-release snapshot to pick up a commit that makes all nodejs_binary
18+
# programs produce source-mapped stack traces.
19+
RULES_NODEJS_VERSION = "926349cea4cd360afcd5647ccdd09d2d2fb471aa"
20+
21+
http_archive(
1822
name = "build_bazel_rules_nodejs",
19-
remote = "https://github.com/bazelbuild/rules_nodejs",
20-
commit = "7d4e13a7d1bbc5eded35df631338e9f0719a1737",
23+
url = "https://github.com/bazelbuild/rules_nodejs/archive/%s.zip" % RULES_NODEJS_VERSION,
24+
strip_prefix = "rules_nodejs-%s" % RULES_NODEJS_VERSION,
25+
sha256 = "5ba3c8c209078c2e3f0c6aa4abd01a1a561f92a5bfda04e25604af5f4734d69d",
2126
)
2227

2328
load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories")

0 commit comments

Comments
 (0)