Skip to content

Commit

Permalink
CHORE(NPM) - bump prettier from 3.2.2 to 3.3.3 (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Sep 17, 2024
1 parent 17c35ad commit 1a89a67
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 14 deletions.
3 changes: 1 addition & 2 deletions apps/parsley/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"evg-db-ops": "../../scripts/evg-db-ops.sh",
"postversion": "yarn deploy-utils-postversion",
"prepare": "yarn --cwd='../..' prepare",
"prettier": "prettier --write",
"preview": "serve -s dist -p 4173",
"prod": "env-cmd -e devProduction -r .env-cmdrc.local.json vite",
"snapshot": "vitest run snapshot.test.ts",
Expand Down Expand Up @@ -119,7 +118,7 @@
"eslint": "8.56.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sort-keys-plus": "^1.3.1",
"prettier": "3.2.2",
"prettier": "3.3.3",
"prompts": "2.4.2",
"replace-in-file": "7.1.0",
"rollup-plugin-visualizer": "5.12.0",
Expand Down
3 changes: 1 addition & 2 deletions apps/spruce/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"evg-db-ops": "../../scripts/evg-db-ops.sh",
"postversion": "yarn deploy-utils-postversion",
"prepare": "yarn --cwd='../..' prepare",
"prettier-run": "prettier --write",
"preview": "serve -s dist -p 3000",
"prod": "env-cmd -e devProduction -r .env-cmdrc.local.json yarn start",
"snapshot": "vitest run snapshot.test.ts",
Expand Down Expand Up @@ -164,7 +163,7 @@
"less": "^4.1.3",
"mutation-observer": "1.0.3",
"path": "0.12.7",
"prettier": "3.2.2",
"prettier": "3.3.3",
"prompts": "^2.4.2",
"replace-in-file": "7.1.0",
"rollup-plugin-visualizer": "^5.12.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const PatchCard: React.FC<PatchCardProps> = ({ pageType, patch }) => {
<PatchStatusBadge
status={
activated
? versionFull?.status ?? status
? (versionFull?.status ?? status)
: PatchStatus.Unconfigured
}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const formToGql = ({
// @ts-expect-error: FIXME. This comment was added by an automated script.
name: publicKeySection?.useExisting
? publicKeySection?.publicKeyNameDropdown
: publicKeySection?.newPublicKeyName ?? "",
: (publicKeySection?.newPublicKeyName ?? ""),
// @ts-expect-error: FIXME. This comment was added by an automated script.
key: publicKeySection?.useExisting
? myPublicKeys.find(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const CheckboxFilterTestComponent = () => {

const urlValue = Array.isArray(statusesFromUrl)
? statusesFromUrl.join()
: statusesFromUrl ?? "none";
: (statusesFromUrl ?? "none");

return (
<>
Expand Down
2 changes: 1 addition & 1 deletion apps/spruce/src/pages/image/DistrosTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const columns: LGColumnDef<Distro>[] = [
<span>
{provider === Provider.Ec2Fleet || provider === Provider.Ec2OnDemand
? getValue()
: providerSettingsList?.[0]?.hosts?.length ?? 0}
: (providerSettingsList?.[0]?.hosts?.length ?? 0)}
</span>
),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ export const getFormSchema = (
...placeholderIf(
repoData?.generalConfiguration?.other?.batchTime === null
? "0"
: repoData?.generalConfiguration?.other?.batchTime ?? "",
: (repoData?.generalConfiguration?.other?.batchTime ?? ""),
),
},
remotePath: {
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-testing-library": "^6.2.2",
"graphql": "16.8.1",
"prettier": "3.2.2",
"prettier": "3.3.3",
"typescript": "5.1.3"
}
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9718,10 +9718,10 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"

prettier@3.2.2:
version "3.2.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.2.tgz#96e580f7ca9c96090ad054616c0c4597e2844b65"
integrity sha512-HTByuKZzw7utPiDO523Tt2pLtEyK7OibUD9suEJQrPUCYQqrHr74GGX6VidMrovbf/I50mPqr8j/II6oBAuc5A==
prettier@3.3.3:
version "3.3.3"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105"
integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==

pretty-bytes@^5.6.0:
version "5.6.0"
Expand Down

0 comments on commit 1a89a67

Please sign in to comment.