Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 871 Bytes

File metadata and controls

23 lines (15 loc) · 871 Bytes

Home > @userfrosting/gulp-bundle-assets > CollisionReactions

CollisionReactions enum

Rules for how a bundle collision may be treated.

Signature:

export declare enum CollisionReactions 

Enumeration Members

Member Value Description
error 3 Throw an error on encountering an already defined bundle.
ignore 2 Leave the existing bundle alone.
merge 1 Merge with the existing bundle, with order preserved as much as possible. Colliding arrays will be prepended to the existing, keep an eye out for duplicates.
replace 0 Replace the existing bundle.