Upgrade deps (#6395)

* update js build tools

* update frontend deps

* python updates

* update requests again
This commit is contained in:
Blake Blackshear
2023-05-05 07:45:13 -05:00
committed by GitHub
parent f52b1212cd
commit e3b9998879
4 changed files with 377 additions and 535 deletions

888
web/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,11 +13,11 @@
},
"dependencies": {
"@cycjimmy/jsmpeg-player": "^6.0.5",
"axios": "^1.3.6",
"axios": "^1.4.0",
"copy-to-clipboard": "3.3.3",
"date-fns": "^2.29.3",
"date-fns": "^2.30.0",
"idb-keyval": "^6.2.0",
"immer": "^9.0.21",
"immer": "^10.0.1",
"monaco-yaml": "^4.0.4",
"preact": "^10.13.2",
"preact-async-route": "^2.2.1",
@@ -38,21 +38,21 @@
"@testing-library/user-event": "^14.4.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vitest/coverage-c8": "^0.30.1",
"@vitest/ui": "^0.30.1",
"@vitest/coverage-c8": "^0.31.0",
"@vitest/ui": "^0.31.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.39.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vitest-globals": "^1.3.1",
"fake-indexeddb": "^4.0.1",
"jsdom": "^21.1.1",
"jsdom": "^22.0.0",
"msw": "^1.2.1",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"vite": "^4.3.2",
"vitest": "^0.30.1"
"vite": "^4.3.5",
"vitest": "^0.31.0"
}
}

View File

@@ -1,6 +1,6 @@
import { h, createContext } from 'preact';
import { baseUrl } from './baseUrl';
import produce from 'immer';
import { produce } from 'immer';
import { useCallback, useContext, useEffect, useRef, useReducer } from 'preact/hooks';
const initialState = Object.freeze({ __connected: false });