-
Notifications
You must be signed in to change notification settings - Fork 6
Feature 2230 Prettier #2231
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
Feature 2230 Prettier #2231
Changes from all commits
c2461b5
4e64ed5
298f7f0
d3d9beb
86feb82
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,13 +48,14 @@ | |
| "universal-cookie": "^4.0.4" | ||
| }, | ||
| "scripts": { | ||
| "start": "vite", | ||
| "build-storybook": "storybook build", | ||
| "build": "vite build", | ||
| "serve": "vite preview", | ||
| "test": "vitest", | ||
| "coverage": "vitest run --coverage --watch=false", | ||
| "format": "prettier --write 'src/**/*.{css,html,js,jsx}'", | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the only new script.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we include
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was thinking the same thing, and to include
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I merged before I saw these comments. I will add those extensions in another PR. |
||
| "serve": "vite preview", | ||
| "start": "vite", | ||
| "storybook": "storybook dev -p 6006", | ||
| "build-storybook": "storybook build" | ||
| "test": "vitest" | ||
| }, | ||
| "eslintConfig": { | ||
| "extends": "react-app" | ||
|
|
@@ -88,7 +89,7 @@ | |
| "jest-fetch-mock": "^3.0.3", | ||
| "jsdom": "^24.0.0", | ||
| "msw": "^2.2.13", | ||
| "prettier": "2.8.1", | ||
| "prettier": "3.2.5", | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using the latest version of Prettier. |
||
| "prop-types": "^15.8.1", | ||
| "react-test-renderer": "^18.2.0", | ||
| "storybook": "^8.0.4", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,9 +9,9 @@ | |
| } | ||
|
|
||
| @media print { | ||
| :root { | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lots of formatting changes follow!
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had to update some snapshots related to whitespace. Now all the UI tests pass.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎉 |
||
| --nav-width: 0px; | ||
| } | ||
| :root { | ||
| --nav-width: 0px; | ||
| } | ||
|
|
||
| .App { | ||
| padding-left: 0; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I alphabetized the scripts.