chore: more dev QoL, exclude dolphin dev from json. fix: scummvm

This commit is contained in:
Richard Macias
2025-05-27 10:49:08 -05:00
parent c8f15240ba
commit 461d2863ba
10 changed files with 136 additions and 32 deletions

31
pages/development.md Normal file
View File

@@ -0,0 +1,31 @@
# Development & Contribution
## Contributing
You are welcome to make a PR with a contribution.
### 1. Making changes to the pack
You'll want to directly edit only things in either `./pages/` or `./src/`. Everything else should be designed to update
through scripts. Including the README!
...why template out the README? Because that table is very cumbersome to update on every change.
### 2. Pre-Commit
Before you commit, make sure to run `make release`.
This will:
- template the README
- update the minified json release file
## Development Tips
### Meta field options
My scripts will do specific actions if a `meta` field is present
| key | type | default | description |
| ---------------- | ---- | ------- | ---------------------------------------------- |
| exludeFromExport | bool | false | Excludes the app from the release export json. |
| exludeFromTable | bool | false | Excludes the app from the README table. |