Skip to content

Commit 0aefd4f

Browse files
authored
Infrastructure: Bump prettier to 3.6.2 (#3316)
* Bumps prettier from 3.5.3 to 3.6.2 * Avoid using comma expression
1 parent d16d25d commit 0aefd4f

File tree

3 files changed

+19
-18
lines changed

3 files changed

+19
-18
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"husky": "^9.1.7",
5757
"lint-staged": "^15.5.0",
5858
"node-fetch": "^2.6.7",
59-
"prettier": "^3.5.3",
59+
"prettier": "^3.6.2",
6060
"selenium-webdriver": "^4.32.0",
6161
"stylelint": "^16.19.1",
6262
"stylelint-config-standard": "^36.0.1",

scripts/coverage-report.js

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -546,18 +546,19 @@ glob
546546
pointerUp: getNumberOfReferences(dataJS, 'pointerup', true),
547547
};
548548

549-
(example.documentationRoles = addExampleToRoles(getRoles(html), example)),
550-
console.log(
551-
' [Documentation Roles]: ' + example.documentationRoles.length
552-
);
553-
(example.documentationAttributes = addExampleToPropertiesAndStates(
549+
example.documentationRoles = addExampleToRoles(getRoles(html), example);
550+
console.log(
551+
' [Documentation Roles]: ' + example.documentationRoles.length
552+
);
553+
554+
example.documentationAttributes = addExampleToPropertiesAndStates(
554555
getPropertiesAndStates(html),
555556
example
556-
)),
557-
console.log(
558-
' [Documentation aria-* Attributes]: ' +
559-
example.documentationAttributes.length
560-
);
557+
);
558+
console.log(
559+
' [Documentation aria-* Attributes]: ' +
560+
example.documentationAttributes.length
561+
);
561562

562563
indexOfExamples.push(example);
563564
});

0 commit comments

Comments
 (0)