Skip to content

Commit 015f7d8

Browse files
committed
fix(process): require the process object to be present
1 parent dbf74d4 commit 015f7d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const envelopeSchema = Joi.object().keys({
6060
errors: [Joi.array(), null],
6161
output: Joi.array().required(),
6262
rawOutput: [Joi.string().required(), Joi.object().required()],
63-
process: processSchema
63+
process: processSchema.required()
6464
});
6565

6666
const metadataSchemaSAST = Joi.object().keys({

0 commit comments

Comments
 (0)