Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
fix: switch back to logical or
Browse files Browse the repository at this point in the history
  • Loading branch information
Skn0tt committed May 7, 2024
1 parent f6af1d6 commit 530bdc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtimes/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ const zipFunction: ZipFunction = async function ({
bundler: bundlerName,
bundlerWarnings,
config,
displayName: staticAnalysisName ?? config?.name,
displayName: staticAnalysisName || config?.name,
entryFilename: zipPath.entryFilename,
generator: staticAnalysisGenerator ?? config?.generator ?? getInternalValue(isInternal),
generator: staticAnalysisGenerator || config?.generator || getInternalValue(isInternal),
inputs,
includedFiles,
staticAnalysisResult,
Expand Down

0 comments on commit 530bdc7

Please # to comment.