Skip to content

Commit

Permalink
Update prettier to 3.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tjenkinson committed Dec 24, 2024
1 parent e38d57d commit 4ae167c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"jest": "29.7.0",
"lint-staged": "15.2.11",
"micromatch": "4.0.8",
"prettier": "3.0.3",
"prettier": "3.4.2",
"rollup": "4.28.1",
"ts-jest": "29.2.5",
"tslib": "2.8.1",
Expand Down
4 changes: 2 additions & 2 deletions src/checker-reader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,8 @@ export function* buildCheckerReader(input: CheckerInput): CheckerReader {
stepCount > input.maxSteps
? ('hitMaxSteps' as const)
: timedOut
? ('timedOut' as const)
: null;
? ('timedOut' as const)
: null;

return error
? {
Expand Down
4 changes: 2 additions & 2 deletions src/downgrade-pattern.ts
Original file line number Diff line number Diff line change
Expand Up @@ -432,8 +432,8 @@ export function downgradePattern({
atomicOrOptional: atomic
? 'atomic'
: optional
? 'optional'
: null,
? 'optional'
: null,
group,
reference: node,
});
Expand Down

0 comments on commit 4ae167c

Please sign in to comment.