This repository was archived by the owner on Sep 16, 2021. It is now read-only.
File tree 3 files changed +36
-4
lines changed 3 files changed +36
-4
lines changed Original file line number Diff line number Diff line change
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
+ - " ..."
Original file line number Diff line number Diff line change 2
2
3
3
Circle CI | Bazel CI
4
4
:---: | :---:
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 )
6
6
7
7
** WARNING: this is an early release with limited features. Breaking changes are likely. Not recommended for general use.**
8
8
Original file line number Diff line number Diff line change 14
14
15
15
workspace (name = "build_bazel_rules_typescript" )
16
16
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 (
18
22
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" ,
21
26
)
22
27
23
28
load ("@build_bazel_rules_nodejs//:defs.bzl" , "node_repositories" )
You can’t perform that action at this time.
0 commit comments