Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
fix(config): merge buildInclude array
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Dec 9, 2021
1 parent 45810a6 commit 4529125
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/peeky-config/src/util.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { isObject } from '@peeky/utils'

const mergedArrays: string[] = []
const mergedArrays: string[] = [
'buildInclude',
]

export function mergeConfig<T extends (Record<string, any>) = Record<string, any>> (a: T, b: T): T {
const merged: T = { ...a }
Expand Down

0 comments on commit 4529125

Please sign in to comment.