Closed paullewis closed 2 years ago
Comparing with the esbuild
rule from rules_nodejs
, and in particular the args.json, I'm wondering if the outdir
path is perhaps incorrect. It looks to me as if the outdir
path still references bazel-out
, whereas the entryPoints
now seem to be relative to the bin
dir (if I'm reading the file correctly), and I'm assuming the outdir
should also be?
Hey!
With the following
BUILD.bazel
file contents:I expected a
bundle
subdir inbazel-bin
with the generated JS. The metadata, args, and config files are created, but thebundle
subdir remains empty with no generated JS in it. Am I missing a particular attribute?