Adding a 'watch' mode to most projects#420
Merged
mcottontensor merged 26 commits intoEpicGamesExt:masterfrom Jan 24, 2025
Merged
Adding a 'watch' mode to most projects#420mcottontensor merged 26 commits intoEpicGamesExt:masterfrom
mcottontensor merged 26 commits intoEpicGamesExt:masterfrom
Conversation
…he libraries. run in the SignallingWebServer folder
67572a6 to
800b5c1
Compare
lukehb
reviewed
Jan 22, 2025
lukehb
reviewed
Jan 22, 2025
lukehb
reviewed
Jan 22, 2025
lukehb
reviewed
Jan 22, 2025
lukehb
requested changes
Jan 22, 2025
…ojects. fixing signalling server watch using the incorrect http_root.
lukehb
reviewed
Jan 23, 2025
lukehb
approved these changes
Jan 24, 2025
Collaborator
Author
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
mcottontensor
added a commit
that referenced
this pull request
Feb 9, 2025
[UE5.5] Merge pull request #420 from mcottontensor/build-cleanup
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Relevant components:
Problem statement:
#332
The build process is finicky and error prone with knowing what to build and when. Some build scripts are even broken in some situations. We want to automate or semi-automate the build process so that development is more streamlined.
Solution
After much fussing about with mono repo tools and webpack etc. I found that using a series of nodemon scripts along with tsc watch mode and webpack was the simplest solution.
There is now a single script called
developin the signalling server project that will go though all the components and kick off a watch process that will not only watch for source changes but also dependency changes and auto build and when needed restart the signalling server.This should allow you to start the develop script and then make changes to whatever component you need, including frontend changes, and have them working and served immediately.
Documentation
Updated SS launch docs mentioning
npm run developTest Plan and Compatibility
See above.