build: update spec dependencies to clean up yarn audit (#37116)

This commit is contained in:
Samuel Attard 2023-02-03 13:17:05 -08:00 committed by GitHub
parent 0524b4e98a
commit e60b0958e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 22 additions and 38 deletions

View file

@ -63,7 +63,7 @@ const startServer = async () => {
}
const server = http.createServer((req, res) => {
const busboy = new Busboy({ headers: req.headers });
const busboy = Busboy({ headers: req.headers });
const fields = {} as Record<string, any>;
const files = {} as Record<string, Buffer>;
busboy.on('file', (fieldname, file) => {