Skip to content

Commit

Permalink
Merge pull request #3 from WeAreAcademy/update-feb-2024
Browse files Browse the repository at this point in the history
update various packages
  • Loading branch information
nbogie authored Jun 29, 2024
2 parents ec74066 + 173ba7a commit dd62296
Show file tree
Hide file tree
Showing 5 changed files with 2,851 additions and 2,169 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = {
"plugin:jsx-a11y/recommended",

//https://typescript-eslint.io/getting-started
"plugin:@typescript-eslint/recommended",
// "plugin:@typescript-eslint/recommended",

//(no thanks!)
//Runs Prettier as an ESLint rule and reports differences as individual ESLint issues
Expand Down Expand Up @@ -78,5 +78,7 @@ module.exports = {
"@typescript-eslint/no-non-null-assertion": "off",
"no-debugger": "off",
// "no-console": ["error", { allow: ["warn", "error"] }]
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
},
};
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install modules
run: yarn
- name: Check formatting with Prettier
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,30 +17,30 @@
"check-all": "yarn type-check && yarn lint && yarn format && yarn test"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/ui": "^0.31.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"jsdom": "^22.0.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-plugin-checker": "^0.6.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"jsdom": "^24.0.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"vite": "^5.3.2",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.32.0"
"vitest": "^1.6.0"
}
}
Loading

0 comments on commit dd62296

Please sign in to comment.