Skip to content

Commit

Permalink
Upgrade to React 18 latest LTS
Browse files Browse the repository at this point in the history
- Installed node 20.10.0 LTS
 - Installed React 18.3.1 (April 2024)
 - resolved vulnerabilities from recommendations [here](facebook/create-react-app#13564 (comment))
 - installed cross-env package.  This will allow the `GENERATE_SOURCEMAP environment` variable to be set on build for all environments.  `GENERATE_SOURCEMAP=false` will not create the ts (TypeScript) map files at runtime
 - resolved 1 linting warning in `links.js`
  • Loading branch information
readysetagile committed Jul 10, 2024
1 parent 81a7219 commit 67901c9
Show file tree
Hide file tree
Showing 4 changed files with 10,893 additions and 7,074 deletions.
15 changes: 12 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
{
"extends": [
"react-app",
"airbnb",
"plugin:jsx-a11y/recommended",
"plugin:react/jsx-runtime",
"prettier",
],
"plugins": [
"jsx-a11y",
"prettier"
],
"plugins": ["jsx-a11y", "prettier"],
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }]
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}]
}
}
Loading

0 comments on commit 67901c9

Please sign in to comment.