Sha256: ab7e944a76ac8d1d5c2002cbc89763492689414d4624e5a3c96da64f884da75c

Contents?: true

Size: 1.4 KB

Versions: 17

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

module Bridgetown
  module Commands
    class Clean < Thor::Group
      extend BuildOptions
      extend Summarizable
      include ConfigurationOverridable

      Registrations.register do
        register(Clean, "clean", "clean", Clean.summary)
      end

      def self.banner
        "bridgetown clean [options]"
      end
      summary "Clean the site (removes site output and metadata file) without building"

      def clean
        config = configuration_with_overrides(options, Bridgetown::Current.preloaded_configuration)
        destination = config["destination"]
        metadata_file = File.join(config["root_dir"], ".bridgetown-metadata")
        cache_dir = File.join(config["root_dir"], config["cache_dir"])
        bundling_dir = File.join(config["root_dir"], ".bridgetown-cache", "frontend-bundling")

        remove(destination, checker_func: :directory?)
        remove(metadata_file, checker_func: :file?)
        remove(cache_dir, checker_func: :directory?)
        remove(bundling_dir, checker_func: :directory?)
      end

      protected

      def remove(filename, checker_func: :file?)
        if File.public_send(checker_func, filename)
          Bridgetown.logger.info "Cleaner:", "Removing #{filename}..."
          FileUtils.rm_rf(filename)
        else
          Bridgetown.logger.info "Cleaner:", "Nothing to do for #{filename}."
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
bridgetown-core-2.0.0.beta3 lib/bridgetown-core/commands/clean.rb
bridgetown-core-2.0.0.beta2 lib/bridgetown-core/commands/clean.rb
bridgetown-core-2.0.0.beta1 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.3.4 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.3.3 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.3.2 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.3.1 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.3.0 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.3.0.beta3 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.3.0.beta2 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.3.0.beta1 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.2.0 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.2.0.beta5 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.2.0.beta4 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.2.0.beta3 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.2.0.beta2 lib/bridgetown-core/commands/clean.rb
bridgetown-core-1.2.0.beta1 lib/bridgetown-core/commands/clean.rb