Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: support rollup targets in external repositories #113

Merged
merged 1 commit into from
Mar 13, 2025

Conversation

devversion
Copy link
Contributor

Currently some paths, passed via command line arguments do not work when the rollup bundling action is running with inputs from external repos.

See:

[!] RollupError: Could not resolve entry module "../rules_angular/worker/index.mjs".
    at getRollupError (/usr/local/google/home/pgschwendtner/.cache/bazel/_bazel_pgschwendtner/b3e2b6cb76f4b71f1143108e3588676f/sandbox/linux-sandbox/177/execroot/angular_material/bazel-out/k8-opt-exec-2B5CBBC6/bin/external/rules_angular/worker/_bundle_rollup_binary_/_bundle_rollup_binary.runfiles/rules_angular/node_modules/.aspect_rules_js/[email protected]/node_modules/rollup/dist/shared/parseAst.js:285:41)
    at Object.error (/usr/local/google/home/pgschwendtner/.cache/bazel/_bazel_pgschwendtner/b3e2b6cb76f4b71f1143108e3588676f/sandbox/linux-sandbox/177/execroot/angular_material/bazel-out/k8-opt-exec-2B5CBBC6/bin/external/rules_angular/worker/_bundle_rollup_binary_/_bundle_rollup_binary.runfiles/rules_angular/node_modules/.aspect_rules_js/[email protected]/node_modules/rollup/dist/shared/parseAst.js:281:42)
    at ModuleLoader.loadEntryModule (/usr/local/google/home/pgschwendtner/.cache/bazel/_bazel_pgschwendtner/b3e2b6cb76f4b71f1143108e3588676f/sandbox/linux-sandbox/177/execroot/angular_material/bazel-out/k8-opt-exec-2B5CBBC6/bin/external/rules_angular/worker/_bundle_rollup_binary_/_bundle_rollup_binary.runfiles/rules_angular/node_modules/.aspect_rules_js/[email protected]/node_modules/rollup/dist/shared/rollup.js:21271:32)
    at async Promise.all (index 0)

This commit fixes this as short_path seems to be not appropriate/best-practice when passing paths to js_binary actions that clearly run in the bazel-bin where ../external does not exist.

@devversion devversion force-pushed the fix-external-bundling branch from ae80b36 to 711a8ef Compare March 13, 2025 20:52
@devversion devversion requested a review from alexeagle March 13, 2025 20:54
Currently some paths, passed via command line arguments do not work when
the rollup bundling action is running with inputs from external repos.

See:

```
[!] RollupError: Could not resolve entry module "../rules_angular/worker/index.mjs".
    at getRollupError (/usr/local/google/home/pgschwendtner/.cache/bazel/_bazel_pgschwendtner/b3e2b6cb76f4b71f1143108e3588676f/sandbox/linux-sandbox/177/execroot/angular_material/bazel-out/k8-opt-exec-2B5CBBC6/bin/external/rules_angular/worker/_bundle_rollup_binary_/_bundle_rollup_binary.runfiles/rules_angular/node_modules/.aspect_rules_js/[email protected]/node_modules/rollup/dist/shared/parseAst.js:285:41)
    at Object.error (/usr/local/google/home/pgschwendtner/.cache/bazel/_bazel_pgschwendtner/b3e2b6cb76f4b71f1143108e3588676f/sandbox/linux-sandbox/177/execroot/angular_material/bazel-out/k8-opt-exec-2B5CBBC6/bin/external/rules_angular/worker/_bundle_rollup_binary_/_bundle_rollup_binary.runfiles/rules_angular/node_modules/.aspect_rules_js/[email protected]/node_modules/rollup/dist/shared/parseAst.js:281:42)
    at ModuleLoader.loadEntryModule (/usr/local/google/home/pgschwendtner/.cache/bazel/_bazel_pgschwendtner/b3e2b6cb76f4b71f1143108e3588676f/sandbox/linux-sandbox/177/execroot/angular_material/bazel-out/k8-opt-exec-2B5CBBC6/bin/external/rules_angular/worker/_bundle_rollup_binary_/_bundle_rollup_binary.runfiles/rules_angular/node_modules/.aspect_rules_js/[email protected]/node_modules/rollup/dist/shared/rollup.js:21271:32)
    at async Promise.all (index 0)
```

This commit fixes this as `short_path` seems to be not
appropriate/best-practice when passing paths to `js_binary` actions that
clearly run in the `bazel-bin` where `../external` does not exist.
@devversion devversion force-pushed the fix-external-bundling branch from 711a8ef to 234a194 Compare March 13, 2025 20:55
Copy link
Member

@alexeagle alexeagle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks!

@alexeagle alexeagle merged commit 188beed into aspect-build:main Mar 13, 2025
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants