Skip to content

Commit 402b254

Browse files
committed
rel: 0.26.0-beta.0
1 parent fa026cb commit 402b254

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ See sections below for details and alternative methods.
4040
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4141
http_archive(
4242
name = "build_bazel_rules_nodejs",
43-
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.18.7/rules_nodejs-0.18.7.tar.gz"],
44-
sha256 = "a69c5bd317beef982298ea7b5ed8b5c5275d1b55ee199e98a0ca088f8e0c6cce",
43+
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.26.0-beta.0/rules_nodejs-0.26.0-beta.0.tar.gz"],
44+
sha256 = "86ea92217dfd4a84e1e335cc07dfd942b12899796b080492546b947f12c5ab77",
4545
)
4646
4747
load("@build_bazel_rules_nodejs//:defs.bzl", "yarn_install")
@@ -61,8 +61,8 @@ See sections below for details and alternative methods.
6161
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
6262
http_archive(
6363
name = "build_bazel_rules_nodejs",
64-
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.18.7/rules_nodejs-0.18.7.tar.gz"],
65-
sha256 = "a69c5bd317beef982298ea7b5ed8b5c5275d1b55ee199e98a0ca088f8e0c6cce",
64+
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.26.0-beta.0/rules_nodejs-0.26.0-beta.0.tar.gz"],
65+
sha256 = "86ea92217dfd4a84e1e335cc07dfd942b12899796b080492546b947f12c5ab77",
6666
)
6767
6868
load("@build_bazel_rules_nodejs//:defs.bzl", "npm_install")
@@ -139,8 +139,8 @@ containing:
139139
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
140140
http_archive(
141141
name = "build_bazel_rules_nodejs",
142-
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.18.7/rules_nodejs-0.18.7.tar.gz"],
143-
sha256 = "a69c5bd317beef982298ea7b5ed8b5c5275d1b55ee199e98a0ca088f8e0c6cce",
142+
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.26.0-beta.0/rules_nodejs-0.26.0-beta.0.tar.gz"],
143+
sha256 = "86ea92217dfd4a84e1e335cc07dfd942b12899796b080492546b947f12c5ab77",
144144
)
145145
146146
load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories")

Diff for: package.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ load("//internal/common:check_version.bzl", "check_version")
2424
# It will be automatically synced via the npm "version" script
2525
# that is run when running `npm version` during the release
2626
# process. See `Releasing` section in README.md.
27-
VERSION = "0.18.7"
27+
VERSION = "0.26.0-beta.0"
2828

2929
def check_rules_nodejs_version(minimum_version_string):
3030
"""

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@bazel/javascript",
33
"description": "Build JavaScript with Bazel",
4-
"version": "0.18.7",
4+
"version": "0.26.0-beta.0",
55
"keywords": [
66
"javascript",
77
"bazel"

0 commit comments

Comments
 (0)