Skip to content

Commit c241cb7

Browse files
committed
style: prettier
1 parent a09111b commit c241cb7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/build.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ async function run() {
7676
};
7777

7878
function addActionToRequired(schema) {
79-
if (schema.properties.action !== undefined && schema.required !== undefined && !schema.required.includes("action")){
79+
if (
80+
schema.properties.action !== undefined &&
81+
schema.required !== undefined &&
82+
!schema.required.includes("action")
83+
) {
8084
schema.required.push("action");
8185
}
8286
}

0 commit comments

Comments
 (0)