v0.12.3
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_js",
sha256 = "2b7e8500e76b73ff0a075d2573dcb150fe34810ba2f82c6c9f7de5edf7cfc4e3",
strip_prefix = "rules_js-0.12.3",
url = "https://github.com/aspect-build/rules_js/archive/refs/tags/v0.12.3.tar.gz",
)
load("@aspect_rules_js//js:repositories.bzl", "rules_js_dependencies")
rules_js_dependencies()
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "nodejs",
node_version = DEFAULT_NODE_VERSION,
)
load("@aspect_rules_js//npm:npm_import.bzl", "npm_translate_lock")
npm_translate_lock(
name = "npm",
pnpm_lock = "//:pnpm-lock.yaml",
verify_node_modules_ignored = "//:.bazelignore",
)
load("@npm//:repositories.bzl", "npm_repositories")
npm_repositories()
What's Changed
- feat: check that node_modules folders are in .bazelignore by @alexeagle in #197
- chore(deps): update actions/checkout action to v3 by @renovate in #185
- chore(deps): update actions/cache action to v3 by @renovate in #184
- fix: failing windows test due to wrong expected line endings by @kormide in #183
- feat: add execroot & runfiles symlink guards to js_binary by @gregmagolan in #133
- fix: windows test newline error by @kormide in #199
- chore: update README by @gregmagolan in #200
- chore: bump bazel-lib to latest by @alexeagle in #201
- fix: support variations of tarball URLs when .npmrc has registry settings by @gregmagolan in #203
Full Changelog: v0.12.2...v0.12.3