Skip to content

Commit

Permalink
refactor: remove default parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk committed Aug 16, 2022
1 parent 733dcdf commit b657cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/_testHelpers/compressArtifact.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { dirname, resolve } from 'node:path'
import archiver from 'archiver'
import { ensureDir } from 'fs-extra'

export default async function compressArtifact(baseDir, dest, src = []) {
export default async function compressArtifact(baseDir, dest, src) {
const destPath = resolve(baseDir, dest)
await ensureDir(dirname(destPath))

Expand Down

0 comments on commit b657cbf

Please sign in to comment.