Sha256: b51089e1e7294fc6d7d3b28a6e649d7ca8878f809a09e1fe45760de8a17d1e57

Contents?: true

Size: 427 Bytes

Versions: 1

Compression:

Stored size: 427 Bytes

Contents

# frozen_string_literal: true

require "sewing_kit/webpack/manifest/base"

module SewingKit
  module Webpack
    class Manifest
      class TestWithNoAssets < Base
        def asset_bundle_name(_user_agent)
          "test"
        end

        def asset_dependencies(_entrypoint_name, _user_agent)
          {}
        end

        def manifest
          raise OnlyUseInProductionError
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sewing_kit-0.130.1 lib/sewing_kit/webpack/manifest/test_with_no_assets.rb