Sha256: c99841761faaf5de6ce4d7d797f24c0c265d533a0937c768c2efef7938bcbad9
Contents?: true
Size: 371 Bytes
Versions: 20
Compression:
Stored size: 371 Bytes
Contents
# 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
Version data entries
20 entries across 20 versions & 1 rubygems