Skip to content

Commit

Permalink
fix: imports and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioislima committed Oct 28, 2023
1 parent 7f2cbdd commit 58c66d8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@
"stream": "^0.0.2",
"systeminformation": "^5.21.7",
"ts-prune": "^0.10.3",
"tslib": "^2.5.0",
"yauzl": "^2.10.0",
"zod": "^3.22.3",
"tslib": "^2.5.0"
"zod": "^3.22.3"
},
"scripts": {
"setup": "yarn install && yarn allow-scripts",
Expand Down Expand Up @@ -306,7 +306,7 @@
"@valist/sdk": "^2.9.1",
"@vitejs/plugin-react": "^2.2.0",
"cross-env": "^7.0.3",
"electron": "^27.0.0-beta.8",
"electron": "^27.0.2",
"electron-builder": "^24.6.3",
"electron-playwright-helpers": "^1.6.0",
"electron-vite": "^1.0.23",
Expand Down
8 changes: 7 additions & 1 deletion src/backend/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ const nileConfigPath = join(appFolder, 'nile_config', 'nile')
const runtimePath = join(toolsPath, 'runtimes')
const userInfo = join(legendaryConfigPath, 'user.json')
const imagesCachePath = join(appConfigFolder, 'images-cache')
const cachedUbisoftInstallerPath = join(
appFolder,
'tools',
'UbisoftConnectInstaller.exe'
)

const {
currentLogFile,
Expand Down Expand Up @@ -298,5 +303,6 @@ export {
nileConfigPath,
nileInstalled,
nileLibrary,
nileUserData
nileUserData,
cachedUbisoftInstallerPath
}
2 changes: 1 addition & 1 deletion src/frontend/components/UI/TextInputField/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { ChangeEvent, FocusEvent, ReactNode, useContext } from 'react'
import classnames from 'classnames'
import ContextProvider from 'frontend/state/ContextProvider'
import './index.css'
import './index.scss'

interface TextInputFieldProps {
htmlId: string
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6188,10 +6188,10 @@ electron-vite@^1.0.23:
magic-string "^0.30.0"
picocolors "^1.0.0"

electron@^27.0.0-beta.8:
version "27.0.0-beta.9"
resolved "https://registry.yarnpkg.com/electron/-/electron-27.0.0-beta.9.tgz#9afcdb86f9db98ddabcce9f0ac9acdc053090141"
integrity sha512-4h78B843eYU2oh2yMjrwYtl5aVMiFdpurIwtoZvXpfTwyuKiEOQaylmLbi4+sPg1rCmqW/VLv9hfVlOqHDNj/Q==
electron@^27.0.2:
version "27.0.2"
resolved "https://registry.yarnpkg.com/electron/-/electron-27.0.2.tgz#5465475e4e5c4de7371dc06e1872b46265a340f0"
integrity sha512-4fbcHQ40ZDlqhr5Pamm+M5BF7ry2lGqjFTWTJ/mrBwuiPWu6xhV/RWgUhKBaLqKNfAaNl3eMxV3Jc82gv6JauQ==
dependencies:
"@electron/get" "^2.0.0"
"@types/node" "^18.11.18"
Expand Down

0 comments on commit 58c66d8

Please sign in to comment.