This commit is contained in:
Josh Roskos 2026-07-10 06:51:14 +02:00 committed by GitHub
commit 605c2f3d5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 277 additions and 31 deletions

View file

@ -1,3 +1,9 @@
// Node 25 compatibility: SlowBuffer is removed
const buffer = require('buffer')
if (!buffer.SlowBuffer) {
buffer.SlowBuffer = buffer.Buffer
}
const optionDefinitions = [
{ name: 'config', alias: 'c', type: String },
{ name: 'metadata', alias: 'm', type: String },