Skip to content

Commit 556ce6c

Browse files
committed
use '' instead of null to omit build hashes
1 parent 8e675a8 commit 556ce6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/esbuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function generateBinaryHashes() {
125125
try {
126126
bytes = fs.readFileSync(path.join(repoDir, 'npm', key))
127127
} catch {
128-
hashes[key] = null
128+
hashes[key] = ''
129129
continue
130130
}
131131
hashes[key] = crypto.createHash('sha256').update(bytes).digest('hex')

0 commit comments

Comments
 (0)