Skip to content

Commit

Permalink
fix: change order of node_modules and app in js_image_layer (#1549)
Browse files Browse the repository at this point in the history
  • Loading branch information
SinimaWath authored and gregmagolan committed Apr 24, 2024
1 parent e872335 commit 4d6cb3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/private/js_image_layer.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def _js_image_layer_impl(ctx):
node_modules = _build_layer(ctx, type = "node_modules", entries = node_modules_entries, inputs = node_modules_inputs)

return [
DefaultInfo(files = depset([app, node_modules])),
DefaultInfo(files = depset([node_modules, app])),
OutputGroupInfo(app = depset([app]), node_modules = depset([node_modules])),
]

Expand Down

0 comments on commit 4d6cb3e

Please sign in to comment.