Skip to content

Commit

Permalink
Succesfully upgraded a couple of deps:
Browse files Browse the repository at this point in the history
- The upgrades here are verified to work
- Notable change is the major version bump on ESlint and Prettier. There have been some new defaults, among which new default for https://prettier.io/docs/en/options.html\#trailing-commas caused some confusion. The team has decided to disable it in our project, hence the change in .prettierrc.
- I also ran 'npx prettier -w .' so there are some minor changes to the formatting in various files.
  • Loading branch information
jacobwod committed Aug 17, 2023
1 parent f239f0a commit 43dcb9b
Show file tree
Hide file tree
Showing 14 changed files with 473 additions and 292 deletions.
4 changes: 3 additions & 1 deletion new-client/.prettierrc
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{}
{
"trailingComma": "es5"
}
2 changes: 1 addition & 1 deletion new-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ Note that the server will use a self-signed certificate, so your web browser wil
Since Create React App doesn’t support server rendering, you might be wondering how to make `<meta>` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this:

```html
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta property="og:title" content="__OG_TITLE__" />
Expand Down
Loading

0 comments on commit 43dcb9b

Please sign in to comment.