Skip to content

Commit 9738332

Browse files
1 parent c00c1cf commit 9738332

File tree

5 files changed

+86
-1
lines changed

5 files changed

+86
-1
lines changed

Diff for: modules/aspect_rules_rollup/1.0.2/MODULE.bazel

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
"aspect-build/rules_rollup"
2+
3+
module(
4+
name = "aspect_rules_rollup",
5+
version = "1.0.2",
6+
compatibility_level = 1,
7+
)
8+
9+
# Lower-bound (minimum) versions of direct dependencies
10+
bazel_dep(name = "bazel_skylib", version = "1.3.0")
11+
12+
# Need feat: backport 2.x features for interoperability by @kormide in #657
13+
bazel_dep(name = "aspect_bazel_lib", version = "1.38.0")
14+
15+
# Need feat: import toolchains to use for copy actions by @kormide in #1355
16+
bazel_dep(name = "aspect_rules_js", version = "1.34.0")
17+
bazel_dep(name = "rules_nodejs", version = "5.5.3")
18+
bazel_dep(name = "platforms", version = "0.0.5")
19+
20+
rollup = use_extension("@aspect_rules_rollup//rollup:extensions.bzl", "rollup")
21+
rollup.toolchain(
22+
name = "rollup",
23+
rollup_version = "v2.70.2",
24+
)
25+
use_repo(rollup, "rollup")
26+
27+
bazel_dep(name = "buildifier_prebuilt", version = "6.1.2", dev_dependency = True)
28+
29+
npm = use_extension(
30+
"@aspect_rules_js//npm:extensions.bzl",
31+
"npm",
32+
dev_dependency = True,
33+
)
34+
npm.npm_translate_lock(
35+
name = "npm",
36+
npmrc = "//:.npmrc",
37+
pnpm_lock = "//:pnpm-lock.yaml",
38+
verify_node_modules_ignored = "//:.bazelignore",
39+
)
40+
use_repo(npm, "npm")
41+
42+
# We want the stardoc handling from bazel-lib 2.x for dev use here,
43+
# but not force users to upgrade yet.
44+
archive_override(
45+
module_name = "aspect_bazel_lib",
46+
integrity = "sha256-9ep2aCsgnMC9kND1o7JtL3pqKIXwxfYV5ykT9IBduw0=",
47+
strip_prefix = "bazel-lib-2.5.0",
48+
urls = ["https://github.com/aspect-build/bazel-lib/releases/download/v2.5.0/bazel-lib-v2.5.0.tar.gz"],
49+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
===================================================================
2+
--- a/MODULE.bazel
3+
+++ b/MODULE.bazel
4+
@@ -1,9 +1,9 @@
5+
"aspect-build/rules_rollup"
6+
7+
module(
8+
name = "aspect_rules_rollup",
9+
- version = "0.0.0",
10+
+ version = "1.0.2",
11+
compatibility_level = 1,
12+
)
13+
14+
# Lower-bound (minimum) versions of direct dependencies

Diff for: modules/aspect_rules_rollup/1.0.2/presubmit.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
bcr_test_module:
2+
module_path: 'e2e/smoke'
3+
matrix:
4+
bazel: ['7.x', '6.x']
5+
platform: ['debian10', 'macos', 'ubuntu2004', 'windows']
6+
tasks:
7+
run_tests:
8+
name: 'Run test module'
9+
bazel: ${{ bazel }}
10+
platform: ${{ platform }}
11+
test_targets:
12+
- '//...'

Diff for: modules/aspect_rules_rollup/1.0.2/source.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"integrity": "sha256-ZpSkLJm4tGqHiFdVl0GdMc32wWP+dzVHMOsatAB/tqo=",
3+
"strip_prefix": "rules_rollup-1.0.2",
4+
"url": "https://github.com/aspect-build/rules_rollup/releases/download/v1.0.2/rules_rollup-v1.0.2.tar.gz",
5+
"patches": {
6+
"module_dot_bazel_version.patch": "sha256-n3ZMU8UfwRvc0PaXTC6kVji02etdiH+RL4JMI5dkEI4="
7+
},
8+
"patch_strip": 1
9+
}

Diff for: modules/aspect_rules_rollup/metadata.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"versions": [
1414
"0.15.0",
1515
"0.15.2",
16-
"1.0.0"
16+
"1.0.0",
17+
"1.0.2"
1718
],
1819
"yanked_versions": {}
1920
}

0 commit comments

Comments
 (0)