fix: include .env files

This commit is contained in:
eric
2026-03-15 01:20:45 +01:00
parent 2a9bd09aa4
commit 2a25cfb91a
5 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
module( module(
name = "rules_bun", name = "rules_bun",
version = "0.2.2", version = "0.3.0",
) )
# Core ruleset dependencies. # Core ruleset dependencies.

4
MODULE.bazel.lock generated
View File

@@ -193,7 +193,7 @@
"//bun:extensions.bzl%bun": { "//bun:extensions.bzl%bun": {
"general": { "general": {
"bzlTransitiveDigest": "lzOUyaXDbkH922ruNkkwEF2cnI4m0XpzrOti0qypwtA=", "bzlTransitiveDigest": "lzOUyaXDbkH922ruNkkwEF2cnI4m0XpzrOti0qypwtA=",
"usagesDigest": "/0BcCMA6AOzLhQaRK6DquxrCfpPHJUjSUaFz4zmQrsM=", "usagesDigest": "VjHIRmOHSKwE5ZE9b899tlvu9Uls6PV4Tm1t5O3Ar5w=",
"recordedInputs": [ "recordedInputs": [
"REPO_MAPPING:,bazel_tools bazel_tools" "REPO_MAPPING:,bazel_tools bazel_tools"
], ],
@@ -284,7 +284,7 @@
"//bun:extensions.bzl%bun_install": { "//bun:extensions.bzl%bun_install": {
"general": { "general": {
"bzlTransitiveDigest": "lzOUyaXDbkH922ruNkkwEF2cnI4m0XpzrOti0qypwtA=", "bzlTransitiveDigest": "lzOUyaXDbkH922ruNkkwEF2cnI4m0XpzrOti0qypwtA=",
"usagesDigest": "f9pNm3AOxJDZmpHhL2vrrCo23IW33im/l/VYCTW2BWM=", "usagesDigest": "iy1VO+2SjXRMb6kxDEcmP31RsSL3Pr3Qp1b1ZTk0Q3o=",
"recordedInputs": [ "recordedInputs": [
"REPO_MAPPING:,bazel_tools bazel_tools" "REPO_MAPPING:,bazel_tools bazel_tools"
], ],

View File

@@ -60,7 +60,7 @@ Release announcements should provide a copy-pasteable module snippet in the
standard ruleset form: standard ruleset form:
```starlark ```starlark
bazel_dep(name = "rules_bun", version = "0.2.2") bazel_dep(name = "rules_bun", version = "0.3.0")
``` ```
Then add the Bun repositories and register the toolchains in `MODULE.bazel`: Then add the Bun repositories and register the toolchains in `MODULE.bazel`:

View File

@@ -1,3 +1,3 @@
0.2.2 0.3.0
stable stable
0 0

View File

@@ -77,7 +77,7 @@
} }
{ {
run.script = '' run.script = ''
bazel test //tests/... >/dev/null bazel cquery //tests/... >/dev/null
''; '';
} }
]; ];