Chore: update dependencies

This commit is contained in:
Dreamacro 2022-06-28 20:08:05 +08:00
parent 02574691d4
commit 634b19ab4e
4 changed files with 1198 additions and 1079 deletions

View File

@ -14,14 +14,14 @@ jobs:
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: '17.x'
node-version: '18.x'
cache: pnpm
- name: Install package and build
run: |
pnpm install
pnpm install --frozen-lockfile
pnpm build
- name: Deploy
uses: crazy-max/ghaction-github-pages@v2
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: dist

View File

@ -26,45 +26,45 @@
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vitejs/plugin-react": "^1.3.2",
"eslint": "^8.16.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react-hooks": "^4.5.0",
"sass": "^1.52.1",
"type-fest": "^2.13.0",
"typescript": "^4.7.2",
"vite": "^2.9.9",
"eslint-plugin-react-hooks": "^4.6.0",
"sass": "^1.53.0",
"type-fest": "^2.14.0",
"typescript": "^4.7.4",
"vite": "^2.9.13",
"vite-plugin-pwa": "^0.12.0",
"vite-plugin-windicss": "^1.8.4",
"vite-plugin-windicss": "^1.8.5",
"vite-tsconfig-paths": "^3.5.0",
"windicss": "^3.5.4"
"windicss": "^3.5.5"
},
"dependencies": {
"@react-hookz/web": "^14.2.2",
"@tanstack/react-table": "8.0.0-alpha.87",
"@react-hookz/web": "^14.3.0",
"@tanstack/react-table": "^8.0.6",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"dayjs": "^1.11.2",
"dayjs": "^1.11.3",
"eventemitter3": "^4.0.7",
"immer": "^9.0.14",
"jotai": "^1.6.7",
"immer": "^9.0.15",
"jotai": "^1.7.2",
"lodash-es": "^4.17.21",
"neverthrow": "^4.3.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.7",

2229
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -55,7 +55,7 @@ export function ConnectionInfo (props: ConnectionsInfoProps) {
</div>
<div className="flex my-3">
<span className="font-bold w-20">{t('info.process')}</span>
<span className="font-mono">{
<span className="font-mono flex-1 break-all">{
props.connection.metadata?.processPath
? `${basePath(props.connection.metadata.processPath)}`
: t('info.hostEmpty')