(globOrObject: string | object)
| 29 | * @param {string|object} globOrObject |
| 30 | */ |
| 31 | export function addCopyRule(globOrObject: string | object) { |
| 32 | if (typeof globOrObject === 'string') { |
| 33 | return copyRules.add(globOrObject); |
| 34 | } |
| 35 | |
| 36 | additionalCopyRules.push(globOrObject); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Utility to remove a copy rule. The glob should be the exact glob |
no test coverage detected