Update dependencies

This commit is contained in:
Steve Kinney
2024-09-30 15:59:18 -06:00
parent 36dff6804c
commit b9f822af3f
9 changed files with 476 additions and 28 deletions

View File

@@ -21,6 +21,12 @@
},
"homepage": "https://github.com/stevekinney/testing-javascript#readme",
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/uuid": "^10.0.0",
@@ -29,6 +35,7 @@
"chalk": "^5.3.0",
"concurrently": "^9.0.1",
"cors": "^2.8.5",
"msw": "^2.4.9",
"tailwind-merge": "^2.5.2",
"uuid": "^10.0.0",
"vite": "^5.4.6",

View File

@@ -1,5 +1,5 @@
import { useMemo } from 'react';
import { getErrorMessage } from 'utility-belt';
import { getErrorMessage } from 'utilities';
import {
Task,

View File

@@ -1,4 +1,4 @@
import type { Task, TaskAction, TaskState } from './types';
import type { TaskAction, TaskState } from './types';
export const initialState: TaskState = {
tasks: [],

View File

@@ -1,5 +1,8 @@
export default {
import { mergeConfig } from 'vite';
import config from './vite.config';
export default mergeConfig(config, {
test: {
environment: 'node',
environment: 'happy-dom',
},
};
});