# frozen_string_literal: true class ViteRuby::CLI::Build < ViteRuby::CLI::Vite DEFAULT_ENV = CURRENT_ENV || 'production' desc 'Bundle all entrypoints using Vite.' shared_options option(:force, desc: 'Force the build even if assets have not changed', type: :boolean) def call(**options) super { |args| ViteRuby.commands.build_from_task(*args) } end end