Skip to content

Commit edbad88

Browse files
committed
chore: release 0.31.1
1 parent d5f7c5e commit edbad88

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ containing:
7878
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
7979
http_archive(
8080
name = "build_bazel_rules_nodejs",
81-
sha256 = "76dd8b94381e1ea5efcd65c73732af91199d9f9640ca0ca6ff35fc244fd549d9",
82-
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.31.0/rules_nodejs-0.31.0.tar.gz"],
81+
sha256 = "e04a82a72146bfbca2d0575947daa60fda1878c8d3a3afe868a8ec39a6b968bb",
82+
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.31.1/rules_nodejs-0.31.1.tar.gz"],
8383
)
8484

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

defs.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def yarn_install(**kwargs):
8585
# It will be automatically synced via the npm "version" script
8686
# that is run when running `npm version` during the release
8787
# process. See `Releasing` section in README.md.
88-
VERSION = "0.31.0"
88+
VERSION = "0.31.1"
8989

9090
def check_rules_nodejs_version(minimum_version_string):
9191
"""

package.json

Lines changed: 1 addition & 1 deletion
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.31.0",
4+
"version": "0.31.1",
55
"keywords": [
66
"javascript",
77
"bazel"

packages/create/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ workspace(
155155
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
156156
http_archive(
157157
name = "build_bazel_rules_nodejs",
158-
sha256 = "76dd8b94381e1ea5efcd65c73732af91199d9f9640ca0ca6ff35fc244fd549d9",
159-
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.31.0/rules_nodejs-0.31.0.tar.gz"],
158+
sha256 = "e04a82a72146bfbca2d0575947daa60fda1878c8d3a3afe868a8ec39a6b968bb",
159+
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.31.1/rules_nodejs-0.31.1.tar.gz"],
160160
)
161161
162162
${pkgMgr === 'yarn' ? yarnInstallCmd : npmInstallCmd}

0 commit comments

Comments
 (0)