Skip to content
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

Add scripts to automate updating examples and src #1086

Merged
merged 3 commits into from
Jul 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions examples-testing/prepare-examples.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pnpm run create-examples
git add -A
git commit -m "Add examples"
git apply changes.patch --reject
5 changes: 5 additions & 0 deletions examples-testing/update-patch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
git diff > ../changes.patch
mv ../changes.patch .
rm -rf examples
git add -A
git commit -m "Update patch and delete examples"
6 changes: 6 additions & 0 deletions examples-testing/update-three.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cd ../three.js
git fetch
git checkout $1
cd ..
git add -A
git commit -m "Update three.js"
4 changes: 4 additions & 0 deletions src-testing/prepare-src.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pnpm run create-src
git add -A
git commit -m "Add src"
git apply changes.patch --reject
5 changes: 5 additions & 0 deletions src-testing/update-patch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
git diff > ../changes.patch
mv ../changes.patch .
rm -rf examples
git add -A
git commit -m "Update patch and delete src"
6 changes: 6 additions & 0 deletions src-testing/update-three.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cd ../three.js
git fetch
git checkout $1
cd ..
git add -A
git commit -m "Update three.js"
Loading