aboutsummaryrefslogtreecommitdiff
path: root/src/cli/build_command.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/build_command.zig')
-rw-r--r--src/cli/build_command.zig8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/cli/build_command.zig b/src/cli/build_command.zig
index 196d43f23..0518c7b5a 100644
--- a/src/cli/build_command.zig
+++ b/src/cli/build_command.zig
@@ -44,8 +44,12 @@ pub const BuildCommand = struct {
estimated_input_lines_of_code_ = 0;
var this_bundler = try bundler.Bundler.init(allocator, log, ctx.args, null, null);
- this_bundler.options.entry_names = ctx.bundler_options.entry_names;
- this_bundler.resolver.opts.entry_names = ctx.bundler_options.entry_names;
+ this_bundler.options.entry_naming = ctx.bundler_options.entry_naming;
+ this_bundler.options.chunk_naming = ctx.bundler_options.chunk_naming;
+ this_bundler.options.asset_naming = ctx.bundler_options.asset_naming;
+ this_bundler.resolver.opts.entry_naming = ctx.bundler_options.entry_naming;
+ this_bundler.resolver.opts.chunk_naming = ctx.bundler_options.chunk_naming;
+ this_bundler.resolver.opts.asset_naming = ctx.bundler_options.asset_naming;
this_bundler.options.output_dir = ctx.bundler_options.outdir;
this_bundler.resolver.opts.output_dir = ctx.bundler_options.outdir;
this_bundler.options.react_server_components = ctx.bundler_options.react_server_components;