-
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial TSL patch testing (#977)
* Add examples-jsm * Update * Add examples * Add patch * Delete examples * Add examples * Update patch * Delete examples * Add examples * Update patch and delete examples * Add examples * Update and delete examples * Add examples * Update patch and delete examples * Update * Update patch * Update * Add CI
- Loading branch information
1 parent
04ef205
commit 8959619
Showing
10 changed files
with
651 additions
and
0 deletions.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"excludes": [ | ||
"./examples-jsm", | ||
"./examples-testing", | ||
"./three.js", | ||
"pnpm-lock.yaml" | ||
|
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/prettierrc", | ||
"arrowParens": "avoid", | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"tabWidth": 4, | ||
"printWidth": 120 | ||
} |
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,22 @@ | ||
# Update patch | ||
|
||
- `pnpm run create-examples` | ||
- Commit changes | ||
- `git apply changes.patch` | ||
- Make changes | ||
- `pnpm run type-check` | ||
- `git diff > ../changes.patch` | ||
- Reset changes | ||
- Move patch file | ||
|
||
# Update sources | ||
|
||
- `pnpm run create-examples` | ||
- Commit changes | ||
- `git apply --reject changes.patch` | ||
- Fix conflicts | ||
- `pnpm run type-check` | ||
- `git diff > ../changes.patch` | ||
- Reset example changes | ||
- Move patch file | ||
- Commit changes |
Oops, something went wrong.