MergeRules

data class MergeRules(val pickFirsts: Glob, val merges: Glob, val excludes: Glob)

Constraints on how to handle the merging of collections of files.

These constraints are consulted primarily when there is more than one entry for a given path. However, excludes are also used to exclude any matching entry even if there are no conflicts for that path.

Constructors

Link copied to clipboard
constructor(pickFirsts: Glob, merges: Glob, excludes: Glob)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The excluded pattern(s).

Link copied to clipboard

The pattern(s) for which matching resources are merged into a single entry.

Link copied to clipboard

The pattern(s) for which the first occurrence is packaged. Ordering is determined by the order of dependencies.