Skip to content

Commit 1ac130b

Browse files
Bump prettier from 3.0.3 to 3.1.0 (#951)
1 parent 46ccf3c commit 1ac130b

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 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
@@ -103,7 +103,7 @@
103103
"jest-snapshot-serializer-raw": "^2.0.0",
104104
"jest-watch-typeahead": "^2.2.2",
105105
"lines-and-columns": "^2.0.3",
106-
"prettier": "^3.0.2",
106+
"prettier": "^3.1.0",
107107
"proxyquire": "^2.1.3",
108108
"solc": "^0.8.23-fixed",
109109
"webpack": "^5.88.2",

tests/config/utils/create-snapshot.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ function stringify(value) {
1313
return value === Number.POSITIVE_INFINITY
1414
? "Infinity"
1515
: Array.isArray(value)
16-
? `[${value.map((v) => JSON.stringify(v)).join(", ")}]`
17-
: JSON.stringify(value);
16+
? `[${value.map((v) => JSON.stringify(v)).join(", ")}]`
17+
: JSON.stringify(value);
1818
}
1919

2020
function printOptions(options) {

tests/config/utils/stringify-options-for-title.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ function stringifyOptions(options) {
33
key === "plugins" || key === "errors"
44
? undefined
55
: value === Number.POSITIVE_INFINITY
6-
? "Infinity"
7-
: value
6+
? "Infinity"
7+
: value
88
);
99

1010
return string === "{}" ? "" : string;

0 commit comments

Comments
 (0)