forked from PrismarineJS/prismarine-web-client
-
Notifications
You must be signed in to change notification settings - Fork 79
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
feat: single file build #181
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
77b11ea
wip one file build
zardoy b13f759
add script
zardoy a5def81
bundle worker: its all working now!
zardoy ee18a68
Merge branch 'next' into one-file-build
zardoy d311110
restore bunblind
zardoy 725103b
restore bunblind
zardoy d22cdb7
Merge branch 'next' into one-file-build
zardoy e6b0d79
Merge branch 'next' into one-file-build
zardoy a45a215
Merge remote-tracking branch 'origin/next' into one-file-build
zardoy d93cbf9
rename to single file build, implement panorama replacement, fix all …
zardoy 7a6b471
remove a lot of not used data from entities.json, make it 60% smaller
zardoy 9b6fc35
enable config.json inlining on prod as it won't change anyway on vercel
zardoy 3f14d9c
all done! now only recipes needs to be fixed and sounds added
zardoy 319b2d3
WIP TO REVERT / TEST & FIX
zardoy 20b4014
Merge branch 'next' into one-file-build
zardoy 9e5a412
crash fixes
zardoy 64b424a
Merge branch 'next' into one-file-build
zardoy fbd9351
Merge branch 'next' into one-file-build
zardoy 79a6c7c
Merge branch 'next' into one-file-build
zardoy ca3684a
final workflows
zardoy 435e247
ci fixes
zardoy 3afa092
minor comment adjust
zardoy a8bca03
fix sp 1 in singlefile build
zardoy 06b295a
fix panorama in sfb
zardoy 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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: build-single-file | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-and-bundle: | ||
runs-on: ubuntu-latest | ||
permissions: write-all | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@master | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v4 | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Build single-file version - minecraft.html | ||
run: pnpm build-single-file && mv dist/single/index.html minecraft.html | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: minecraft.html | ||
path: minecraft.html |
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
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.
Fix environment variable mismatch.
Your code checks
SINGLE_FILE_BUILD_MODE
, but the script setsSINGLE_FILE_BUILD
. This mismatch will prevent logic from running as intended.📝 Committable suggestion