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-dev): bump prettier-plugin-tailwindcss from 0.4.1 to 0.5.4 #297

Merged
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
2 changes: 1 addition & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ module.exports = {
bracketSpacing: true,
arrowParens: 'avoid',
trailingComma: 'none',
plugins: [require('prettier-plugin-tailwindcss')]
plugins: ['prettier-plugin-tailwindcss']
};
10 changes: 4 additions & 6 deletions action/src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ export const run = async () => {
if (diffFileCount === 0 && newFileCount === 0) {
info('All visual tests passed, and no diffs found!');

const latestVisualRegressionStatus = await getLatestVisualRegressionStatus(
commitHash
);
const latestVisualRegressionStatus =
await getLatestVisualRegressionStatus(commitHash);
if (latestVisualRegressionStatus?.state === 'failure' && runAttempt === 1) {
info(
'Visual Regression status has already been set to failed, so skipping status update.'
Expand All @@ -75,9 +74,8 @@ export const run = async () => {
});
}

const latestVisualRegressionStatus = await getLatestVisualRegressionStatus(
commitHash
);
const latestVisualRegressionStatus =
await getLatestVisualRegressionStatus(commitHash);
if (
latestVisualRegressionStatus?.state === 'failure' &&
latestVisualRegressionStatus?.description ===
Expand Down
5 changes: 2 additions & 3 deletions app/frontend/components/main-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ const getViewType = async (
return undefined;
}

const shouldViewSideBySide = await imageIsSmallEnoughForSideBySide(
firstImage
);
const shouldViewSideBySide =
await imageIsSmallEnoughForSideBySide(firstImage);
return shouldViewSideBySide ? ImageViews.SIDE_BY_SIDE : undefined;
};
2 changes: 1 addition & 1 deletion app/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@types/testing-library__cypress": "5.0.9",
"prettier-plugin-tailwindcss": "0.4.1"
"prettier-plugin-tailwindcss": "0.5.4"
},
"scripts": {
"build": "tsc && pnpm prod",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"devDependencies": {
"@swc/jest": "0.2.26",
"@types/jest": "29.5.3",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/eslint-plugin": "6.6.0",
"cypress": "12.17.4",
"eslint": "8.48.0",
"eslint-plugin-react": "7.33.2",
"jest": "29.6.2",
"nx": "16.7.4",
"prettier": "3.0.0",
"prettier": "3.0.3",
"typescript": "5.1.6"
},
"scripts": {
Expand Down
123 changes: 31 additions & 92 deletions pnpm-lock.yaml

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

Loading