We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4558f6e commit 6174b08Copy full SHA for 6174b08
swc/private/swc.bzl
@@ -227,7 +227,7 @@ def _impl(ctx):
227
228
src_args = ctx.actions.args()
229
if ctx.attr.swcrc:
230
- src_args.add("--config-file", ctx.file.swcrc.path)
+ src_args.add("--config-file", ctx.file.swcrc)
231
inputs.append(ctx.file.swcrc)
232
233
_swc_action(
@@ -269,10 +269,10 @@ def _impl(ctx):
269
inputs.extend(plugin_cache)
270
271
272
273
274
275
- src_args.add("--out-file", js_out.path)
+ src_args.add("--out-file", js_out)
276
277
output_sources.extend(outputs)
278
0 commit comments