Skip to content

Commit

Permalink
chore: rename type to CpioNodeJsResult
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeChampion authored Jan 6, 2025
1 parent 0656844 commit 963ec9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/zip-it-and-ship-it/src/runtimes/node/utils/cpio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ CpioNodeParameters) {
return { path: destPath, entryFilename, bootstrapVersion }
}

interface ZipNodeJsResult {
interface CpioNodeJsResult {
bootstrapVersion?: string
entryFilename: string
path: string
Expand All @@ -288,7 +288,7 @@ interface ZipNodeJsResult {
export const cpioNodeJs = function ({
archiveFormat,
...options
}: CpioNodeParameters & { archiveFormat: ArchiveFormat }): Promise<ZipNodeJsResult> {
}: CpioNodeParameters & { archiveFormat: ArchiveFormat }): Promise<CpioNodeJsResult> {
if (archiveFormat === ARCHIVE_FORMAT.CPIO) {
return createCpioArchive(options)
}
Expand Down

0 comments on commit 963ec9b

Please sign in to comment.