-
Notifications
You must be signed in to change notification settings - Fork 196
remove renderer from client #460
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
base: next
Are you sure you want to change the base?
Changes from all commits
ff62d67
52b99ca
d14a888
61db0c1
1e18081
b61ccb9
10c69aa
a0ee255
a8cf4db
a7c08f1
0ac9a45
d1fbe00
ca672a0
9dad872
8d784ba
9971aa8
087bdac
8f62009
2527467
4c2077e
8db3790
ae9adb1
5153142
ae8964f
fa423b4
d19ffa6
4974bac
d25fc93
b76eea8
3d1d8d6
7eb8e4a
667055e
ba4c82b
d905c30
f1921d8
9b90009
89efd7b
66594b7
3383d54
d93dce6
3071803
c23e37a
6d4ca9c
bc74243
d65944e
40f957d
a7d897a
c07c75d
2c46e8f
13e2d96
7108fe8
e26ac45
29f27e7
c066826
62dbf8d
ce03875
7d0b085
605e226
168d6ae
8df8253
422fef5
af4beca
6d00680
bee44e4
130bf7a
5e74793
4dd6c2f
ae63559
8e509db
62a0195
648f701
70369e2
4565503
ded3163
4db77a0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,3 +22,4 @@ config.local.json | |
| logs/ | ||
|
|
||
| src/react/npmReactComponents.ts | ||
| .env*.local | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,10 +5,10 @@ | |
| "scripts": { | ||
| "dev-rsbuild": "rsbuild dev", | ||
| "dev-proxy": "node server.js", | ||
| "start": "run-p dev-proxy dev-rsbuild watch-mesher", | ||
| "start2": "run-p dev-rsbuild watch-mesher", | ||
| "start": "run-p dev-proxy dev-rsbuild", | ||
| "start2": "run-p dev-rsbuild", | ||
|
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. Bug: Lint script references removed
|
||
| "start-metrics": "ENABLE_METRICS=true rsbuild dev", | ||
| "build": "pnpm build-other-workers && rsbuild build", | ||
| "build": "rsbuild build", | ||
| "build-analyze": "BUNDLE_ANALYZE=true rsbuild build && pnpm build-other-workers", | ||
|
zardoy marked this conversation as resolved.
|
||
| "build-single-file": "SINGLE_FILE_BUILD=true rsbuild build", | ||
| "prepare-project": "tsx scripts/genShims.ts && tsx scripts/makeOptimizedMcData.mjs && tsx scripts/genLargeDataAliases.ts", | ||
|
|
@@ -20,20 +20,14 @@ | |
| "test:e2e": "start-test http-get://localhost:8080 test:cypress", | ||
| "prod-start": "node server.js --prod", | ||
| "test-mc-server": "tsx cypress/minecraft-server.mjs", | ||
| "lint": "eslint \"{src,cypress,renderer}/**/*.{ts,js,jsx,tsx}\"", | ||
| "lint": "eslint \"{src,cypress}/**/*.{ts,js,jsx,tsx}\"", | ||
| "lint-fix": "pnpm lint --fix", | ||
| "storybook": "storybook dev -p 6006", | ||
| "build-storybook": "storybook build && node scripts/build.js moveStorybookFiles", | ||
| "start-experiments": "vite --config experiments/vite.config.ts --host", | ||
| "watch-other-workers": "echo NOT IMPLEMENTED", | ||
| "build-other-workers": "echo NOT IMPLEMENTED", | ||
| "build-mesher": "node renderer/buildMesherWorker.mjs", | ||
| "watch-mesher": "pnpm build-mesher -w", | ||
| "run-playground": "run-p watch-mesher watch-other-workers watch-playground", | ||
| "run-all": "run-p start run-playground", | ||
| "watch-playground": "rsbuild dev --config renderer/rsbuild.config.ts", | ||
| "update-git-deps": "tsx scripts/updateGitDeps.ts", | ||
| "request-data": "tsx scripts/requestData.ts" | ||
| "request-data": "tsx scripts/requestData.ts", | ||
| "check-bundled-duplicates": "node scripts/findBundledDuplicateDeps.mjs" | ||
| }, | ||
| "keywords": [ | ||
| "prismarine", | ||
|
|
@@ -90,6 +84,7 @@ | |
| "minecraft-data": "0.0.0", | ||
| "minecraft-inventory": "^0.1.45", | ||
| "minecraft-protocol": "github:PrismarineJS/node-minecraft-protocol#master", | ||
| "minecraft-renderer": "^0.1.52", | ||
| "mineflayer-item-map-downloader": "github:zardoy/mineflayer-item-map-downloader", | ||
| "mojangson": "^2.0.4", | ||
| "net-browserify": "github:zardoy/prismarinejs-net-browserify", | ||
|
|
@@ -163,7 +158,6 @@ | |
| "path-browserify": "^1.0.1", | ||
| "path-exists-cli": "^2.0.0", | ||
| "process": "github:PrismarineJS/node-process", | ||
| "renderer": "link:renderer", | ||
| "rimraf": "^5.0.1", | ||
| "storybook": "^7.4.6", | ||
| "stream-browserify": "^3.0.0", | ||
|
|
@@ -202,6 +196,7 @@ | |
| "buffer": "^6.0.3", | ||
| "vec3": "0.1.10", | ||
| "three": "0.154.0", | ||
| "@types/three": "0.154.0", | ||
| "diamond-square": "github:zardoy/diamond-square", | ||
| "prismarine-block": "github:zardoy/prismarine-block#next-era", | ||
| "prismarine-world": "github:zardoy/prismarine-world#next-era", | ||
|
|
@@ -211,7 +206,8 @@ | |
| "minecraft-protocol": "github:PrismarineJS/node-minecraft-protocol#master", | ||
| "react": "^18.2.0", | ||
| "prismarine-chunk": "github:zardoy/prismarine-chunk#master", | ||
| "prismarine-item": "latest" | ||
| "prismarine-item": "latest", | ||
| "valtio": "1.13.2" | ||
| }, | ||
| "updateConfig": { | ||
| "ignoreDependencies": [ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.