-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix game build #2623
Merged
Merged
fix game build #2623
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
0832a96
Fix build for new structure
bob0005 b73577e
add npmrc
bob0005 3a2847e
Add root package.json
bob0005 9f36fdf
Update pnpm workspace & lockfile
bob0005 15a74eb
Move balancing into apps
bob0005 33c7c79
update all package.json files
bob0005 0de459e
update pnpm-lock
bob0005 0a0c843
fix game build
aymericdelab 915f8c9
Merge branch 'fix/build' of https://github.com/BibliothecaDAO/eternum…
aymericdelab f4ec0ac
Fix workspace dependency import
bob0005 435521a
remove husky
bob0005 3c62671
Merge branch 'fix/build' of https://github.com/BibliothecaDAO/eternum…
aymericdelab 19bbbaf
lock
aymericdelab 006f367
add vite
aymericdelab 60000f1
remove vite
aymericdelab 69a06b1
add vite
aymericdelab d87e002
lock
aymericdelab File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ import { ReactComponent as Unmuted } from "@/assets/icons/common/unmuted.svg"; | |
import { ReactComponent as DojoMark } from "@/assets/icons/dojo-mark-full-dark.svg"; | ||
import { ReactComponent as RealmsWorld } from "@/assets/icons/rw-logo.svg"; | ||
import { useDojo } from "@/hooks/context/DojoContext"; | ||
import { useGuilds } from "@/hooks/helpers/useGuilds"; | ||
import { useRealm } from "@/hooks/helpers/useRealm"; | ||
import useUIStore from "@/hooks/store/useUIStore"; | ||
import { useMusicPlayer } from "@/hooks/useMusic"; | ||
|
@@ -105,7 +106,7 @@ export const SettingsWindow = () => { | |
return newFlatMode; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
}); | ||
}; | ||
|
||
return ( | ||
<OSWindow onClick={() => togglePopup(settings)} show={isOpen} title={settings}> | ||
<div className="flex justify-between p-4"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Critical dependencies missing for React application
Several essential dependencies have been removed:
react
,react-dom
)@types/react
,@types/react-dom
)@vitejs/plugin-react
)This will break the application build and development workflow.
Restore the necessary dependencies:
📝 Committable suggestion