Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump prettier from 3.1.1 to 3.2.4 #623

Merged
merged 3 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eslint-configs/eslint-config-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
"eslint-plugin-playwright": "^0.22.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": ">=29.7.0",
"prettier": ">=3.1.1"
"prettier": ">=3.2.4"
},
"peerDependencies": {
"@rushstack/eslint-patch": ">=1.1.4",
"eslint": ">=8.55.0",
"jest": ">=29.7.0",
"prettier": ">=3.1.1"
"prettier": ">=3.2.4"
}
}
10 changes: 5 additions & 5 deletions package-lock.json

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

7 changes: 2 additions & 5 deletions packages/internal-test-env/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,8 @@ export const availableEnvironments = [
"Custom" as const,
];

export type AvailableEnvironments = typeof availableEnvironments extends Array<
infer E
>
? E
: never;
export type AvailableEnvironments =
typeof availableEnvironments extends Array<infer E> ? E : never;

export interface TestingEnvironmentNode extends TestingEnvironmentBase {
clientCredentials: {
Expand Down
1 change: 1 addition & 0 deletions packages/jest-jsdom-polyfills/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ if (typeof globalThis.File === "undefined") {

// FIXME This is a temporary workaround for https://github.com/jsdom/jsdom/issues/1724#issuecomment-720727999
// The following fetch APIs are missing in JSDom

if (
typeof globalThis.Response === "undefined" ||
typeof globalThis.Request === "undefined" ||
Expand Down
Loading