You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: update default nodejs version to 16 (#3107)
As of 2021-10-26, v16 has entered LTS, so it's the most appropriate default.
Also, it provides darwin_arm releases (apple silicon) which many developers now expect.
BREAKING CHANGE:
The default nodejs version is now 16.12.0.
To go back to the previous default, put this in your WORKSPACE:
```starlark
load("@build_bazel_rules_nodejs//:index.bzl", "node_repositories")
node_repositories(
node_version = "14.17.5",
)
```
Fixes#3101
0 commit comments