Skip to content

Commit 268363c

Browse files
authored
Merge pull request #4 from frontend-fun/update-branches
Update branches
2 parents c9aba7f + a00615a commit 268363c

File tree

4 files changed

+28
-119
lines changed

4 files changed

+28
-119
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = {
3333
},
3434
project: ["./tsconfig.json"],
3535
},
36-
ignorePatterns: [".eslintrc.js"],
36+
ignorePatterns: [".eslintrc.js", "jest.config.js"],
3737
rules: {
3838
// https://stackoverflow.com/questions/57802057/eslint-configuring-no-unused-vars-for-typescript
3939
// Use typescript's checker for unused vars (critical for Enums)

.github/workflows/node.js.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080
run: |
8181
echo "<html><body><pre>" > ./dist/build.html
8282
npm run build |& tee -a ./dist/build.html
83+
mv ./build/* ./dist
8384
echo "</pre></body></html>" >> ./dist/build.html
8485
echo "* [Build](../build.html)" >> docs/quick-links.md
8586
# Run Tests

package-lock.json

Lines changed: 22 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@
55
"private": true,
66
"dependencies": {
77
"@testing-library/jest-dom": "^5.17.0",
8-
"@testing-library/react": "^13.4.0",
98
"@testing-library/user-event": "^13.5.0",
109
"@types/jest": "^27.5.2",
1110
"@types/node": "^16.18.105",
12-
"@types/react": "^18.3.3",
13-
"@types/react-dom": "^18.3.0",
1411
"react": "^18.3.1",
1512
"react-bootstrap": "^2.10.4",
1613
"react-dom": "^18.3.1",
@@ -48,6 +45,10 @@
4845
},
4946
"devDependencies": {
5047
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
48+
"@testing-library/dom": "^10.4.0",
49+
"@testing-library/react": "^16.0.0",
50+
"@types/react": "^18.3.3",
51+
"@types/react-dom": "^18.3.0",
5152
"@typescript-eslint/eslint-plugin": "^8.2.0",
5253
"@typescript-eslint/parser": "^8.2.0",
5354
"eslint": "^8.57.0",

0 commit comments

Comments
 (0)