Skip to content

Commit 48de0d8

Browse files
committed
Update for 0.4.4
- Fix issue related to bazel #2492 - Bump version - Include 0.4.4 in travis matrix.
1 parent c5b0347 commit 48de0d8

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ os:
88
- osx
99

1010
env:
11+
- V=0.4.4
1112
- V=0.4.3
1213
- V=0.4.2
1314
- V=0.4.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies. This will download the nodejs toolchain including
1515
```python
1616
git_repository(
1717
name = "org_pubref_rules_node",
18-
tag = "v0.3.2",
18+
tag = "v0.3.3",
1919
remote = "https://github.com/pubref/rules_node.git",
2020
)
2121

node/internal/node_repositories.bzl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,19 @@ def _node_toolchain_impl(ctx):
2727

2828
ctx.file("WORKSPACE", "workspace(name = '%s')" % ctx.name)
2929
ctx.file("BUILD", NODE_TOOLCHAIN_BUILD_FILE)
30+
ctx.file("BUILD.bazel", NODE_TOOLCHAIN_BUILD_FILE)
31+
3032

3133
_node_toolchain = repository_rule(
3234
_node_toolchain_impl,
3335
attrs = {
3436
"_linux": attr.label(
35-
default = Label("@nodejs_linux_amd64//:BUILD.bazel"),
37+
default = Label("@nodejs_linux_amd64//:WORKSPACE"),
3638
allow_files = True,
3739
single_file = True,
3840
),
3941
"_darwin": attr.label(
40-
default = Label("@nodejs_darwin_amd64//:BUILD.bazel"),
42+
default = Label("@nodejs_darwin_amd64//:WORKSPACE"),
4143
allow_files = True,
4244
single_file = True,
4345
),

0 commit comments

Comments
 (0)